pub struct Avatars {
pub system: Option<Vec<Avatar>>,
pub custom: Option<Vec<Avatar>>,
}
Expand description
Avatars : Details about system and custom avatars.
Fields§
§system: Option<Vec<Avatar>>
System avatars list.
custom: Option<Vec<Avatar>>
Custom avatars list.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Avatars
impl<'de> Deserialize<'de> for Avatars
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
impl StructuralPartialEq for Avatars
Auto Trait Implementations§
impl Freeze for Avatars
impl RefUnwindSafe for Avatars
impl Send for Avatars
impl Sync for Avatars
impl Unpin for Avatars
impl UnwindSafe for Avatars
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