#[non_exhaustive]pub enum PlayerItemTrackVideoFieldMode {
DeinterlaceFields,
Unknown(String),
}Expand description
Re-exports the AVPlayer framework surface for this item.
Mirrors the AVPlayer framework counterpart for PlayerItemTrackVideoFieldMode.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DeinterlaceFields
Mirrors the AVPlayer framework case DeinterlaceFields.
Unknown(String)
Mirrors the AVPlayer framework case Unknown.
Trait Implementations§
Source§impl Clone for PlayerItemTrackVideoFieldMode
impl Clone for PlayerItemTrackVideoFieldMode
Source§fn clone(&self) -> PlayerItemTrackVideoFieldMode
fn clone(&self) -> PlayerItemTrackVideoFieldMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Hash for PlayerItemTrackVideoFieldMode
impl Hash for PlayerItemTrackVideoFieldMode
Source§impl PartialEq for PlayerItemTrackVideoFieldMode
impl PartialEq for PlayerItemTrackVideoFieldMode
Source§fn eq(&self, other: &PlayerItemTrackVideoFieldMode) -> bool
fn eq(&self, other: &PlayerItemTrackVideoFieldMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PlayerItemTrackVideoFieldMode
impl StructuralPartialEq for PlayerItemTrackVideoFieldMode
Auto Trait Implementations§
impl Freeze for PlayerItemTrackVideoFieldMode
impl RefUnwindSafe for PlayerItemTrackVideoFieldMode
impl Send for PlayerItemTrackVideoFieldMode
impl Sync for PlayerItemTrackVideoFieldMode
impl Unpin for PlayerItemTrackVideoFieldMode
impl UnsafeUnpin for PlayerItemTrackVideoFieldMode
impl UnwindSafe for PlayerItemTrackVideoFieldMode
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