pub struct StationIdentifiersLowLevel {
pub identifiers_length: u16,
pub identifiers_chunk_offset: u16,
pub identifiers_chunk_data: [u8; 60],
}
Fields§
§identifiers_length: u16
§identifiers_chunk_offset: u16
§identifiers_chunk_data: [u8; 60]
Trait Implementations§
Source§impl Clone for StationIdentifiersLowLevel
impl Clone for StationIdentifiersLowLevel
Source§fn clone(&self) -> StationIdentifiersLowLevel
fn clone(&self) -> StationIdentifiersLowLevel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl FromByteSlice for StationIdentifiersLowLevel
impl FromByteSlice for StationIdentifiersLowLevel
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> StationIdentifiersLowLevel
fn from_le_byte_slice(bytes: &[u8]) -> StationIdentifiersLowLevel
Deserialize the implementing type from a byte slice.
Source§impl LowLevelRead<u8, StationIdentifiersResult> for StationIdentifiersLowLevel
impl LowLevelRead<u8, StationIdentifiersResult> for StationIdentifiersLowLevel
fn ll_message_length(&self) -> usize
fn ll_message_chunk_offset(&self) -> usize
fn ll_message_chunk_data(&self) -> &[u8] ⓘ
fn get_result(&self) -> StationIdentifiersResult
impl Copy for StationIdentifiersLowLevel
Auto Trait Implementations§
impl Freeze for StationIdentifiersLowLevel
impl RefUnwindSafe for StationIdentifiersLowLevel
impl Send for StationIdentifiersLowLevel
impl Sync for StationIdentifiersLowLevel
impl Unpin for StationIdentifiersLowLevel
impl UnwindSafe for StationIdentifiersLowLevel
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