pub struct SystemAvatars {
pub system: Option<Vec<Avatar>>,
}
Expand description
SystemAvatars : List of system avatars.
Fields§
§system: Option<Vec<Avatar>>
A list of avatar details.
Implementations§
Source§impl SystemAvatars
impl SystemAvatars
Sourcepub fn new() -> SystemAvatars
pub fn new() -> SystemAvatars
List of system avatars.
Trait Implementations§
Source§impl Clone for SystemAvatars
impl Clone for SystemAvatars
Source§fn clone(&self) -> SystemAvatars
fn clone(&self) -> SystemAvatars
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SystemAvatars
impl Debug for SystemAvatars
Source§impl Default for SystemAvatars
impl Default for SystemAvatars
Source§fn default() -> SystemAvatars
fn default() -> SystemAvatars
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SystemAvatars
impl<'de> Deserialize<'de> for SystemAvatars
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
Source§impl PartialEq for SystemAvatars
impl PartialEq for SystemAvatars
Source§impl Serialize for SystemAvatars
impl Serialize for SystemAvatars
impl StructuralPartialEq for SystemAvatars
Auto Trait Implementations§
impl Freeze for SystemAvatars
impl RefUnwindSafe for SystemAvatars
impl Send for SystemAvatars
impl Sync for SystemAvatars
impl Unpin for SystemAvatars
impl UnwindSafe for SystemAvatars
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