pub struct JointClassification {
pub level: Classification,
pub countries: Box<[Trigraph]>,
}Expand description
JOINT classification: US is co-owner with other nations.
//JOINT S USA GBR//REL TO USA, GBR
Country list is space-delimited (NOT comma-delimited like REL TO). Must include USA. All JOINT participants must also appear in REL TO.
Fields§
§level: ClassificationClassification level (US ladder, includes RESTRICTED).
countries: Box<[Trigraph]>Co-owning countries (space-delimited in source). Must include USA.
Trait Implementations§
Source§impl Clone for JointClassification
impl Clone for JointClassification
Source§fn clone(&self) -> JointClassification
fn clone(&self) -> JointClassification
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 JointClassification
impl Debug for JointClassification
Source§impl PartialEq for JointClassification
impl PartialEq for JointClassification
impl Eq for JointClassification
impl StructuralPartialEq for JointClassification
Auto Trait Implementations§
impl Freeze for JointClassification
impl RefUnwindSafe for JointClassification
impl Send for JointClassification
impl Sync for JointClassification
impl Unpin for JointClassification
impl UnsafeUnpin for JointClassification
impl UnwindSafe for JointClassification
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