diff --git a/crates/lune-std-ffi/src/c/string_info.rs b/crates/lune-std-ffi/src/c/string_info.rs index e69de29..8b13789 100644 --- a/crates/lune-std-ffi/src/c/string_info.rs +++ b/crates/lune-std-ffi/src/c/string_info.rs @@ -0,0 +1 @@ + diff --git a/crates/lune-std-ffi/src/c/types/f32.rs b/crates/lune-std-ffi/src/c/types/f32.rs index 10c1234..6352e5b 100644 --- a/crates/lune-std-ffi/src/c/types/f32.rs +++ b/crates/lune-std-ffi/src/c/types/f32.rs @@ -37,7 +37,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -49,7 +52,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -61,8 +68,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -71,6 +82,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/f64.rs b/crates/lune-std-ffi/src/c/types/f64.rs index ccbe431..8657052 100644 --- a/crates/lune-std-ffi/src/c/types/f64.rs +++ b/crates/lune-std-ffi/src/c/types/f64.rs @@ -37,7 +37,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -49,7 +52,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -61,8 +68,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -71,6 +82,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/i128.rs b/crates/lune-std-ffi/src/c/types/i128.rs index 1ceeaaf..17eb888 100644 --- a/crates/lune-std-ffi/src/c/types/i128.rs +++ b/crates/lune-std-ffi/src/c/types/i128.rs @@ -37,7 +37,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -49,7 +52,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -61,8 +68,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -71,6 +82,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/i16.rs b/crates/lune-std-ffi/src/c/types/i16.rs index 2cc5ed8..39035b5 100644 --- a/crates/lune-std-ffi/src/c/types/i16.rs +++ b/crates/lune-std-ffi/src/c/types/i16.rs @@ -37,7 +37,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -49,7 +52,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -61,8 +68,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -71,6 +82,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/i32.rs b/crates/lune-std-ffi/src/c/types/i32.rs index 7cbfa81..4dae14a 100644 --- a/crates/lune-std-ffi/src/c/types/i32.rs +++ b/crates/lune-std-ffi/src/c/types/i32.rs @@ -37,7 +37,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -49,7 +52,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -61,8 +68,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -71,6 +82,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/i64.rs b/crates/lune-std-ffi/src/c/types/i64.rs index cc16c98..3e35310 100644 --- a/crates/lune-std-ffi/src/c/types/i64.rs +++ b/crates/lune-std-ffi/src/c/types/i64.rs @@ -37,7 +37,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -49,7 +52,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -61,8 +68,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -71,6 +82,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/u128.rs b/crates/lune-std-ffi/src/c/types/u128.rs index 880bb05..78851f0 100644 --- a/crates/lune-std-ffi/src/c/types/u128.rs +++ b/crates/lune-std-ffi/src/c/types/u128.rs @@ -37,7 +37,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -49,7 +52,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -61,8 +68,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -71,6 +82,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/u16.rs b/crates/lune-std-ffi/src/c/types/u16.rs index 9a367b3..2a9dc04 100644 --- a/crates/lune-std-ffi/src/c/types/u16.rs +++ b/crates/lune-std-ffi/src/c/types/u16.rs @@ -38,7 +38,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -50,7 +53,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -62,8 +69,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -72,6 +83,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/u64.rs b/crates/lune-std-ffi/src/c/types/u64.rs index ef08a10..07911b5 100644 --- a/crates/lune-std-ffi/src/c/types/u64.rs +++ b/crates/lune-std-ffi/src/c/types/u64.rs @@ -37,7 +37,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -49,7 +52,11 @@ impl FfiConvert for CTypeInfo { data_handle: &Ref, ) -> LuaResult> { let value = unsafe { - (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? }; Ok(value) } @@ -61,8 +68,12 @@ impl FfiConvert for CTypeInfo { dst: &Ref, src: &Ref, ) -> LuaResult<()> { - *dst.get_inner_pointer().byte_offset(dst_offset).cast::() = - *src.get_inner_pointer().byte_offset(src_offset).cast::(); + *dst.get_inner_pointer() + .byte_offset(dst_offset) + .cast::() = *src + .get_inner_pointer() + .byte_offset(src_offset) + .cast::(); Ok(()) } unsafe fn stringify_data( @@ -71,6 +82,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } } diff --git a/crates/lune-std-ffi/src/c/types/u8.rs b/crates/lune-std-ffi/src/c/types/u8.rs index b1e421e..a9d575b 100644 --- a/crates/lune-std-ffi/src/c/types/u8.rs +++ b/crates/lune-std-ffi/src/c/types/u8.rs @@ -34,7 +34,10 @@ impl FfiConvert for CTypeInfo { } }; unsafe { - *(data_handle.get_inner_pointer().byte_offset(offset).cast::()) = value; + *(data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) = value; } Ok(()) } @@ -47,8 +50,13 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult> { - let value = - unsafe { (*data_handle.get_inner_pointer().byte_offset(offset).cast::()).into_lua(lua)? }; + let value = unsafe { + (*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .into_lua(lua)? + }; Ok(value) } unsafe fn copy_data( @@ -69,6 +77,10 @@ impl FfiConvert for CTypeInfo { offset: isize, data_handle: &Ref, ) -> LuaResult { - Ok((*data_handle.get_inner_pointer().byte_offset(offset).cast::()).to_string()) + Ok((*data_handle + .get_inner_pointer() + .byte_offset(offset) + .cast::()) + .to_string()) } }