pub struct CertificationExamStatus {
pub number_users_pass: Option<i32>,
pub type_: Option<String>,
}Expand description
Status for a Google Partners certification exam.
This type is not used in any activity, and only used as part of another schema.
Fields§
§number_users_pass: Option<i32>The number of people who have passed the certification exam.
type_: Option<String>The type of certification exam.
Trait Implementations§
Source§impl Clone for CertificationExamStatus
impl Clone for CertificationExamStatus
Source§fn clone(&self) -> CertificationExamStatus
fn clone(&self) -> CertificationExamStatus
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 CertificationExamStatus
impl Debug for CertificationExamStatus
Source§impl Default for CertificationExamStatus
impl Default for CertificationExamStatus
Source§fn default() -> CertificationExamStatus
fn default() -> CertificationExamStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CertificationExamStatus
impl<'de> Deserialize<'de> for CertificationExamStatus
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 CertificationExamStatus
Auto Trait Implementations§
impl Freeze for CertificationExamStatus
impl RefUnwindSafe for CertificationExamStatus
impl Send for CertificationExamStatus
impl Sync for CertificationExamStatus
impl Unpin for CertificationExamStatus
impl UnsafeUnpin for CertificationExamStatus
impl UnwindSafe for CertificationExamStatus
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