pub struct ComplianceStandard {
pub standard: Option<String>,
}Expand description
Defines the details of a compliance standard.
This type is not used in any activity, and only used as part of another schema.
Fields§
§standard: Option<String>Name of the compliance standard.
Trait Implementations§
Source§impl Clone for ComplianceStandard
impl Clone for ComplianceStandard
Source§fn clone(&self) -> ComplianceStandard
fn clone(&self) -> ComplianceStandard
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ComplianceStandard
impl Debug for ComplianceStandard
Source§impl Default for ComplianceStandard
impl Default for ComplianceStandard
Source§fn default() -> ComplianceStandard
fn default() -> ComplianceStandard
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComplianceStandard
impl<'de> Deserialize<'de> for ComplianceStandard
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for ComplianceStandard
Auto Trait Implementations§
impl Freeze for ComplianceStandard
impl RefUnwindSafe for ComplianceStandard
impl Send for ComplianceStandard
impl Sync for ComplianceStandard
impl Unpin for ComplianceStandard
impl UnsafeUnpin for ComplianceStandard
impl UnwindSafe for ComplianceStandard
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