pub struct Account {
pub uuid: String,
pub name: String,
pub type_: String,
pub state: String,
pub avatar: String,
pub domain: String,
pub attr_version: usize,
pub create_at: DateTime<Local>,
pub base_avatar_url: String,
pub base_attachment_url: String,
}Fields§
§uuid: String§name: String§type_: String§state: String§avatar: String§domain: String§attr_version: usize§create_at: DateTime<Local>§base_avatar_url: String§base_attachment_url: 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 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