pub enum ObjectTypes {
CanMessage86(CanMessage2),
CanErrorExt73(CanErrorFrameExt),
LogContainer10(LogContainer),
AppText65(AppText),
UnsupportedPadded {
_last_data: u8,
},
Unsupported(u8),
}Variants§
CanMessage86(CanMessage2)
CanErrorExt73(CanErrorFrameExt)
LogContainer10(LogContainer)
AppText65(AppText)
UnsupportedPadded
Unsupported(u8)
Trait Implementations§
Source§impl BinRead for ObjectTypes
impl BinRead for ObjectTypes
Source§type Args<'__binrw_generated_args_lifetime> = ObjectTypesBinReadArgs
type Args<'__binrw_generated_args_lifetime> = ObjectTypesBinReadArgs
Source§fn read_options<R: Read + Seek>(
__binrw_generated_var_reader: &mut R,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binrw_generated_var_reader: &mut R, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: Self::Args<'_>, ) -> BinResult<Self>
Source§fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self from the reader using the given arguments. Read moreSource§fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self from the reader, assuming big-endian byte order, using the
given arguments. Read moreSource§impl Debug for ObjectTypes
impl Debug for ObjectTypes
Source§impl ReadEndian for ObjectTypes
impl ReadEndian for ObjectTypes
Source§const ENDIAN: EndianKind
const ENDIAN: EndianKind
The endianness of the type.
Auto Trait Implementations§
impl Freeze for ObjectTypes
impl RefUnwindSafe for ObjectTypes
impl Send for ObjectTypes
impl Sync for ObjectTypes
impl Unpin for ObjectTypes
impl UnwindSafe for ObjectTypes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more