pub struct VerifiedEmployerObjectSchema {
pub status: Option<String>,
pub employer_name: Option<String>,
pub employer_id: String,
}
Fields§
§status: Option<String>
Outcome of the employer verification.
employer_name: Option<String>
Name of the verified employer.
employer_id: String
The UUID of the employerId.
Trait Implementations§
Source§impl Debug for VerifiedEmployerObjectSchema
impl Debug for VerifiedEmployerObjectSchema
Source§impl<'de> Deserialize<'de> for VerifiedEmployerObjectSchema
impl<'de> Deserialize<'de> for VerifiedEmployerObjectSchema
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 VerifiedEmployerObjectSchema
impl RefUnwindSafe for VerifiedEmployerObjectSchema
impl Send for VerifiedEmployerObjectSchema
impl Sync for VerifiedEmployerObjectSchema
impl Unpin for VerifiedEmployerObjectSchema
impl UnwindSafe for VerifiedEmployerObjectSchema
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