pub enum RestrictionProfile {
LittleKid,
OlderKid,
Teen,
Unknown,
}
Variants§
Trait Implementations§
Source§impl Clone for RestrictionProfile
impl Clone for RestrictionProfile
Source§fn clone(&self) -> RestrictionProfile
fn clone(&self) -> RestrictionProfile
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RestrictionProfile
impl Debug for RestrictionProfile
Source§impl<'de> Deserialize<'de> for RestrictionProfile
impl<'de> Deserialize<'de> for RestrictionProfile
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 RestrictionProfile
impl PartialEq for RestrictionProfile
Source§impl Serialize for RestrictionProfile
impl Serialize for RestrictionProfile
impl Copy for RestrictionProfile
impl Eq for RestrictionProfile
impl StructuralPartialEq for RestrictionProfile
Auto Trait Implementations§
impl Freeze for RestrictionProfile
impl RefUnwindSafe for RestrictionProfile
impl Send for RestrictionProfile
impl Sync for RestrictionProfile
impl Unpin for RestrictionProfile
impl UnwindSafe for RestrictionProfile
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