fix(generate/convert/host/rust/derive/structure): Ignore `ptr` arg on todo

This commit is contained in:
Benedikt Peetz 2024-03-27 22:28:38 +01:00
parent 5a9de1ac0a
commit bd0b3c7dcf
Signed by: bpeetz
GPG Key ID: A5E94010C3A642AD
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ impl Structure {
}
}
fn from_ptr(ptr: Self::Ptr) -> Result<Self, trixy::types::error::TypeConversionError> {
fn from_ptr(_ptr: Self::Ptr) -> Result<Self, trixy::types::error::TypeConversionError> {
todo!()
}
}