pub struct Users {Show 19 fields
pub calls_receive: i64,
pub calls_send: i64,
pub email: String,
pub emoji_receive: i64,
pub emoji_send: i64,
pub files_receive: i64,
pub files_send: i64,
pub group_receive: i64,
pub group_send: i64,
pub images_receive: i64,
pub images_send: i64,
pub total_receive: i64,
pub total_send: i64,
pub user_id: String,
pub user_name: String,
pub videos_receive: i64,
pub videos_send: i64,
pub voice_receive: i64,
pub voice_send: i64,
}Fields
calls_receive: i64Account seats.
calls_send: i64Account seats.
email: StringUser’s first name.
emoji_receive: i64Account seats.
emoji_send: i64Account seats.
files_receive: i64Account seats.
files_send: i64Account seats.
group_receive: i64Account seats.
group_send: i64Account seats.
images_receive: i64Account seats.
images_send: i64Account seats.
total_receive: i64Account seats.
total_send: i64Account seats.
user_id: StringUser’s first name.
user_name: StringUser’s first name.
videos_receive: i64Account seats.
videos_send: i64Account seats.
voice_receive: i64Account seats.
voice_send: i64Account seats.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Users
impl<'de> Deserialize<'de> for Users
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 Users
impl JsonSchema for Users
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 Users
Auto Trait Implementations
impl RefUnwindSafe for Users
impl Send for Users
impl Sync for Users
impl Unpin for Users
impl UnwindSafe for Users
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