#[repr(u8)]pub enum RunningTime {
VeryShort = 1,
Short = 2,
Average = 3,
Long = 4,
VeryLong = 5,
}
Variants§
Trait Implementations§
Source§impl Clone for RunningTime
impl Clone for RunningTime
Source§fn clone(&self) -> RunningTime
fn clone(&self) -> RunningTime
Returns a copy of the value. Read more
1.0.0 · 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 RunningTime
impl Debug for RunningTime
impl Copy for RunningTime
Auto Trait Implementations§
impl Freeze for RunningTime
impl RefUnwindSafe for RunningTime
impl Send for RunningTime
impl Sync for RunningTime
impl Unpin for RunningTime
impl UnwindSafe for RunningTime
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