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 flatbuffers::SafeSliceAccess for Object {} implementation
31 impl<'a> flatbuffers::Follow<'a> for Object { implementation
38 impl<'a> flatbuffers::Follow<'a> for &'a Object { implementation
45 impl<'b> flatbuffers::Push for Object { implementation
50 ::core::slice::from_raw_parts(self as *const Object as *const u8, Self::size()) in push() constant
55 impl<'b> flatbuffers::Push for &'b Object { implementation
61 ::core::slice::from_raw_parts(*self as *const Object as *const u8, Self::size()) in push() constant
67 impl<'a> flatbuffers::Verifiable for Object { implementation
77 impl<'a> Object { impl
126 pub fn pack(&self) -> Object { in pack()