pub struct CertificationStatus {
pub type_: Option<String>,
pub user_count: Option<i32>,
pub is_certified: Option<bool>,
pub exam_statuses: Option<Vec<CertificationExamStatus>>,
}Expand description
Google Partners certification status.
This type is not used in any activity, and only used as part of another schema.
Fields§
§type_: Option<String>The type of the certification.
user_count: Option<i32>Number of people who are certified,
is_certified: Option<bool>Whether certification is passing.
exam_statuses: Option<Vec<CertificationExamStatus>>List of certification exam statuses.
Trait Implementations§
Source§impl Clone for CertificationStatus
impl Clone for CertificationStatus
Source§fn clone(&self) -> CertificationStatus
fn clone(&self) -> CertificationStatus
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 CertificationStatus
impl Debug for CertificationStatus
Source§impl Default for CertificationStatus
impl Default for CertificationStatus
Source§fn default() -> CertificationStatus
fn default() -> CertificationStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CertificationStatus
impl<'de> Deserialize<'de> for CertificationStatus
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
Source§impl Serialize for CertificationStatus
impl Serialize for CertificationStatus
impl Part for CertificationStatus
Auto Trait Implementations§
impl Freeze for CertificationStatus
impl RefUnwindSafe for CertificationStatus
impl Send for CertificationStatus
impl Sync for CertificationStatus
impl Unpin for CertificationStatus
impl UnwindSafe for CertificationStatus
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