pub struct CertificationsCertifications {
pub br: Option<Vec<Certification>>,
pub de: Option<Vec<Certification>>,
pub au: Option<Vec<Certification>>,
pub india: Option<Vec<Certification>>,
pub gb: Option<Vec<Certification>>,
pub fr: Option<Vec<Certification>>,
pub nz: Option<Vec<Certification>>,
pub us: Option<Vec<Certification>>,
pub ca: Option<Vec<Certification>>,
}
Fields§
§br: Option<Vec<Certification>>
§de: Option<Vec<Certification>>
§au: Option<Vec<Certification>>
§india: Option<Vec<Certification>>
§gb: Option<Vec<Certification>>
§fr: Option<Vec<Certification>>
§nz: Option<Vec<Certification>>
§us: Option<Vec<Certification>>
§ca: Option<Vec<Certification>>
Trait Implementations§
Source§impl Clone for CertificationsCertifications
impl Clone for CertificationsCertifications
Source§fn clone(&self) -> CertificationsCertifications
fn clone(&self) -> CertificationsCertifications
Returns a copy 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 CertificationsCertifications
impl Debug for CertificationsCertifications
Source§impl Default for CertificationsCertifications
impl Default for CertificationsCertifications
Source§fn default() -> CertificationsCertifications
fn default() -> CertificationsCertifications
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CertificationsCertifications
impl<'de> Deserialize<'de> for CertificationsCertifications
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
Auto Trait Implementations§
impl Freeze for CertificationsCertifications
impl RefUnwindSafe for CertificationsCertifications
impl Send for CertificationsCertifications
impl Sync for CertificationsCertifications
impl Unpin for CertificationsCertifications
impl UnwindSafe for CertificationsCertifications
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