pub struct Details {
pub sex: Sex,
pub birthday_month: u8,
pub birthday_day: u8,
pub shirt_color: u8,
pub is_favorite: bool,
pub is_sharing_enabled: bool,
}
Expand description
Generic details of the Mii.
Fields§
§sex: Sex
Sex of the Mii.
birthday_month: u8
Birthday month.
birthday_day: u8
Birthday day.
shirt_color: u8
Color of the Mii’s shirt.
is_favorite: bool
Whether the Mii is a favorite.
is_sharing_enabled: bool
Whether the Mii can be shared.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Details
impl Send for Details
impl Sync for Details
impl Unpin for Details
impl UnwindSafe for Details
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more