#[non_exhaustive]pub enum PlayerInterstitialEventSkippableEventState {
NotSkippable,
NotYetEligible,
Eligible,
NoLongerEligible,
Unknown(i32),
}Expand description
Re-exports the AVPlayer framework surface for this item.
Mirrors the AVPlayer framework counterpart for PlayerInterstitialEventSkippableEventState.
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.
NotSkippable
Mirrors the AVPlayer framework case NotSkippable.
NotYetEligible
Mirrors the AVPlayer framework case NotYetEligible.
Eligible
Mirrors the AVPlayer framework case Eligible.
NoLongerEligible
Mirrors the AVPlayer framework case NoLongerEligible.
Unknown(i32)
Mirrors the AVPlayer framework case Unknown.
Trait Implementations§
Source§impl Clone for PlayerInterstitialEventSkippableEventState
impl Clone for PlayerInterstitialEventSkippableEventState
Source§fn clone(&self) -> PlayerInterstitialEventSkippableEventState
fn clone(&self) -> PlayerInterstitialEventSkippableEventState
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 PartialEq for PlayerInterstitialEventSkippableEventState
impl PartialEq for PlayerInterstitialEventSkippableEventState
Source§fn eq(&self, other: &PlayerInterstitialEventSkippableEventState) -> bool
fn eq(&self, other: &PlayerInterstitialEventSkippableEventState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PlayerInterstitialEventSkippableEventState
impl Eq for PlayerInterstitialEventSkippableEventState
impl StructuralPartialEq for PlayerInterstitialEventSkippableEventState
Auto Trait Implementations§
impl Freeze for PlayerInterstitialEventSkippableEventState
impl RefUnwindSafe for PlayerInterstitialEventSkippableEventState
impl Send for PlayerInterstitialEventSkippableEventState
impl Sync for PlayerInterstitialEventSkippableEventState
impl Unpin for PlayerInterstitialEventSkippableEventState
impl UnsafeUnpin for PlayerInterstitialEventSkippableEventState
impl UnwindSafe for PlayerInterstitialEventSkippableEventState
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