pub enum BlockUsage {
PlayerDirectory(usize),
PlayerScript,
Player(usize),
VideoDirectory(usize),
Playlist(usize),
VideoSegment(usize),
}Variants§
PlayerDirectory(usize)
PlayerScript
Player(usize)
VideoDirectory(usize)
Playlist(usize)
VideoSegment(usize)
Implementations§
Trait Implementations§
Source§impl Clone for BlockUsage
impl Clone for BlockUsage
Source§fn clone(&self) -> BlockUsage
fn clone(&self) -> BlockUsage
Returns a duplicate 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 BlockUsage
impl Debug for BlockUsage
Source§impl Ord for BlockUsage
impl Ord for BlockUsage
Source§fn cmp(&self, other: &BlockUsage) -> Ordering
fn cmp(&self, other: &BlockUsage) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BlockUsage
impl PartialEq for BlockUsage
Source§impl PartialOrd for BlockUsage
impl PartialOrd for BlockUsage
impl Eq for BlockUsage
impl StructuralPartialEq for BlockUsage
Auto Trait Implementations§
impl Freeze for BlockUsage
impl RefUnwindSafe for BlockUsage
impl Send for BlockUsage
impl Sync for BlockUsage
impl Unpin for BlockUsage
impl UnwindSafe for BlockUsage
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