pub struct OutfitDetails {
pub id: u64,
pub name: String,
pub universe_id: u64,
pub assets: Vec<Asset>,
pub body_colors: BodyColors,
pub scales: AvatarScales,
pub avatar_type: AvatarType,
pub outfit_type: String,
pub is_editable: bool,
pub moderation_status: Option<String>,
}Fields§
§id: u64§name: String§universe_id: u64§assets: Vec<Asset>§body_colors: BodyColors§scales: AvatarScales§avatar_type: AvatarType§outfit_type: String§is_editable: bool§moderation_status: Option<String>Trait Implementations§
Source§impl Clone for OutfitDetails
impl Clone for OutfitDetails
Source§fn clone(&self) -> OutfitDetails
fn clone(&self) -> OutfitDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OutfitDetails
impl Debug for OutfitDetails
Source§impl<'de> Deserialize<'de> for OutfitDetails
impl<'de> Deserialize<'de> for OutfitDetails
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 OutfitDetails
impl PartialEq for OutfitDetails
Source§impl Serialize for OutfitDetails
impl Serialize for OutfitDetails
impl StructuralPartialEq for OutfitDetails
Auto Trait Implementations§
impl Freeze for OutfitDetails
impl RefUnwindSafe for OutfitDetails
impl Send for OutfitDetails
impl Sync for OutfitDetails
impl Unpin for OutfitDetails
impl UnsafeUnpin for OutfitDetails
impl UnwindSafe for OutfitDetails
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