pub struct Account {Show 13 fields
pub id: i64,
pub name: String,
pub description: String,
pub icon_url: Option<String>,
pub provider_info: Option<Value>,
pub live_volume: i64,
pub total_volume: i64,
pub quota_limit: i64,
pub quota_excess_pct: i32,
pub is_active: bool,
pub locked: bool,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: i64§name: String§description: String§icon_url: Option<String>§provider_info: Option<Value>§live_volume: i64§total_volume: i64§quota_limit: i64§quota_excess_pct: i32§is_active: bool§locked: bool§created_at: String§updated_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Account
impl<'de> Deserialize<'de> for Account
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 Account
impl RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl UnsafeUnpin for Account
impl UnwindSafe for Account
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