pub struct User {
pub created_at: Option<DateTime<Utc>>,
pub dept: String,
pub email: String,
pub first_name: String,
pub last_client_version: String,
pub last_login_time: Option<DateTime<Utc>>,
pub last_name: String,
pub pmi: i64,
pub role_name: String,
pub timezone: String,
pub type_: i64,
pub use_pmi: bool,
}Expand description
The user object represents a specific user on Zoom.
Fields
created_at: Option<DateTime<Utc>>The user object represents a specific user on Zoom.
dept: StringThe user object represents a specific user on Zoom.
email: StringUser’s first name.
first_name: StringThe user object represents a specific user on Zoom.
last_client_version: StringThe user object represents a specific user on Zoom.
last_login_time: Option<DateTime<Utc>>The user object represents a specific user on Zoom.
last_name: StringThe user object represents a specific user on Zoom.
pmi: i64The user object represents a specific user on Zoom.
role_name: StringThe user object represents a specific user on Zoom.
timezone: StringThe user object represents a specific user on Zoom.
type_: i64Account seats.
use_pmi: boolThe user object represents a specific user on Zoom.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
sourcefn 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
sourceimpl JsonSchema for User
impl JsonSchema for User
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for User
Auto Trait Implementations
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnwindSafe for User
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more