pub struct UpdateComponent {
pub classification: ComponentClassification,
pub identifier: u16,
pub classificationindex: u8,
pub comparisonstamp: u32,
pub version: DescriptorString,
pub size: Option<u32>,
pub flags: Option<u32>,
}Expand description
An entry for Pass Component Table or Update Component
The same structure is used for both, with size and flags
unpopulated for Pass Component
Fields§
§classification: ComponentClassification§identifier: u16§classificationindex: u8§comparisonstamp: u32§version: DescriptorString§size: Option<u32>Size, not set for Pass Component
flags: Option<u32>Flags, not set for Pass Component
Implementations§
Source§impl UpdateComponent
impl UpdateComponent
pub fn parse_pass_component(buf: &[u8]) -> IResult<&[u8], Self>
pub fn parse_update(buf: &[u8]) -> IResult<&[u8], Self>
Auto Trait Implementations§
impl Freeze for UpdateComponent
impl RefUnwindSafe for UpdateComponent
impl Send for UpdateComponent
impl Sync for UpdateComponent
impl Unpin for UpdateComponent
impl UnwindSafe for UpdateComponent
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