pub struct RdBlock {
pub cnwdi: bool,
pub sigma: Box<[u8]>,
}Expand description
Restricted Data block with optional modifiers.
Rendered as RD, RD-CNWDI, RD-SIGMA 20, or RD-CNWDI-SIGMA 18 20.
Fields§
§cnwdi: boolWhether CNWDI is present. Only valid with TS or S classification.
sigma: Box<[u8]>SIGMA compartment numbers (14, 15, 18, 20). Must be in numerical order. Empty if no SIGMA designation.
Trait Implementations§
impl Eq for RdBlock
impl StructuralPartialEq for RdBlock
Auto Trait Implementations§
impl Freeze for RdBlock
impl RefUnwindSafe for RdBlock
impl Send for RdBlock
impl Sync for RdBlock
impl Unpin for RdBlock
impl UnsafeUnpin for RdBlock
impl UnwindSafe for RdBlock
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