pub struct ParsedClassification {
pub level: i32,
pub required: Vec<String>,
pub groups: Vec<String>,
pub subgroups: Vec<String>,
}Expand description
values describing a classification string after parsing
Fields§
§level: i32Classification level
required: Vec<String>Required access system flags
groups: Vec<String>Groups that may be disseminated to
subgroups: Vec<String>Subgroups
Implementations§
Trait Implementations§
Source§impl Clone for ParsedClassification
impl Clone for ParsedClassification
Source§fn clone(&self) -> ParsedClassification
fn clone(&self) -> ParsedClassification
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 Debug for ParsedClassification
impl Debug for ParsedClassification
Source§impl Default for ParsedClassification
impl Default for ParsedClassification
Source§fn default() -> ParsedClassification
fn default() -> ParsedClassification
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParsedClassification
impl PartialEq for ParsedClassification
impl StructuralPartialEq for ParsedClassification
Auto Trait Implementations§
impl Freeze for ParsedClassification
impl RefUnwindSafe for ParsedClassification
impl Send for ParsedClassification
impl Sync for ParsedClassification
impl Unpin for ParsedClassification
impl UnwindSafe for ParsedClassification
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more