pub struct Outfit {
pub id: u64,
pub name: String,
pub is_editable: bool,
pub outfit_type: Option<()>,
}Fields§
§id: u64§name: String§is_editable: bool§outfit_type: Option<()>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Outfit
impl<'de> Deserialize<'de> for Outfit
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 Eq for Outfit
impl StructuralPartialEq for Outfit
Auto Trait Implementations§
impl Freeze for Outfit
impl RefUnwindSafe for Outfit
impl Send for Outfit
impl Sync for Outfit
impl Unpin for Outfit
impl UnsafeUnpin for Outfit
impl UnwindSafe for Outfit
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