Lines Matching defs:Object
15 pub(crate) struct Object(pub [u8; 4]); struct
16 impl Default for Object { implementation
21 impl core::fmt::Debug for Object { implementation
29 impl flatbuffers::SimpleToVerifyInSlice for Object {} implementation
30 impl<'a> flatbuffers::Follow<'a> for Object { implementation
37 impl<'a> flatbuffers::Follow<'a> for &'a Object { implementation
44 impl<'b> flatbuffers::Push for Object { implementation
48 let src = ::core::slice::from_raw_parts(self as *const Object as *const u8, Self::size()); in push() constant
53 impl<'a> flatbuffers::Verifiable for Object { implementation
63 impl<'a> Object { impl
118 pub fn pack(&self) -> Object { in pack()