Struct someip_messages::SdPayload
source · pub struct SdPayload {
pub flags: SdFlags,
pub entries: Vec<SdEntry>,
pub options: Vec<SdOption>,
}
Expand description
Represents the SdPayload within a SD message.
Fields§
§flags: SdFlags
Flags
entries: Vec<SdEntry>
Entries
options: Vec<SdOption>
Options
Implementations§
source§impl SdPayload
impl SdPayload
sourcepub fn entries_len(&self) -> usize
pub fn entries_len(&self) -> usize
Length of the payload’s entries in bytes
sourcepub fn options_len(&self) -> usize
pub fn options_len(&self) -> usize
Length of the payload’s options in bytes
sourcepub fn reboot_flag(&self) -> bool
pub fn reboot_flag(&self) -> bool
Returns true if the reboot flag is set
sourcepub fn unicast_flag(&self) -> bool
pub fn unicast_flag(&self) -> bool
Returns true if the unicast flag is set
sourcepub fn options(&self, entry_index: usize) -> Vec<&SdEndpointOption>
pub fn options(&self, entry_index: usize) -> Vec<&SdEndpointOption>
Returns the associated options of an entry
Trait Implementations§
source§impl PartialEq<SdPayload> for SdPayload
impl PartialEq<SdPayload> for SdPayload
impl Eq for SdPayload
impl StructuralEq for SdPayload
impl StructuralPartialEq for SdPayload
Auto Trait Implementations§
impl RefUnwindSafe for SdPayload
impl Send for SdPayload
impl Sync for SdPayload
impl Unpin for SdPayload
impl UnwindSafe for SdPayload
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