#[repr(u8)]pub enum DfcId {
Packets = 0,
Segments = 1,
Reserved = 2,
UserDefined = 3,
}Expand description
Data Field Construction Identifier.
Indicates how the data field of a U-frame is organized.
In a P-frame, this shall be set to Packets (binary ‘00’).
Variants§
Packets = 0
Integer number of unsegmented packets (binary ‘00’).
Segments = 1
A complete or segmented packet (binary ‘01’).
Reserved = 2
Reserved for future CCSDS definition (binary ‘10’).
UserDefined = 3
User-defined data (binary ‘11’).
Trait Implementations§
impl Copy for DfcId
impl Eq for DfcId
impl StructuralPartialEq for DfcId
Auto Trait Implementations§
impl Freeze for DfcId
impl RefUnwindSafe for DfcId
impl Send for DfcId
impl Sync for DfcId
impl Unpin for DfcId
impl UnsafeUnpin for DfcId
impl UnwindSafe for DfcId
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