pub enum Rating {
NoRating,
AllAge,
Age(u16),
}
Expand description
Represents recommended minimum age of the viewer. The numbering scheme aligns with Annex F of EN 300 707 v1.2.1 published by ETSI.
Variants§
Implementations§
Trait Implementations§
impl Copy for Rating
impl Eq for Rating
impl StructuralPartialEq for Rating
Auto Trait Implementations§
impl Freeze for Rating
impl RefUnwindSafe for Rating
impl Send for Rating
impl Sync for Rating
impl Unpin for Rating
impl UnwindSafe for Rating
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