pub enum ProxyQualityTier {
Draft,
Review,
Delivery,
}Expand description
Proxy quality tier for different stages of the offline/online workflow.
Variants§
Draft
Rough-cut editing — smallest files, lowest resolution.
Review
Client review — medium files, visually acceptable quality.
Delivery
Delivery / conform — highest quality proxy allowed.
Implementations§
Source§impl ProxyQualityTier
impl ProxyQualityTier
Trait Implementations§
Source§impl Clone for ProxyQualityTier
impl Clone for ProxyQualityTier
Source§fn clone(&self) -> ProxyQualityTier
fn clone(&self) -> ProxyQualityTier
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 ProxyQualityTier
impl Debug for ProxyQualityTier
Source§impl Hash for ProxyQualityTier
impl Hash for ProxyQualityTier
Source§impl Ord for ProxyQualityTier
impl Ord for ProxyQualityTier
Source§fn cmp(&self, other: &ProxyQualityTier) -> Ordering
fn cmp(&self, other: &ProxyQualityTier) -> 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 ProxyQualityTier
impl PartialEq for ProxyQualityTier
Source§impl PartialOrd for ProxyQualityTier
impl PartialOrd for ProxyQualityTier
impl Copy for ProxyQualityTier
impl Eq for ProxyQualityTier
impl StructuralPartialEq for ProxyQualityTier
Auto Trait Implementations§
impl Freeze for ProxyQualityTier
impl RefUnwindSafe for ProxyQualityTier
impl Send for ProxyQualityTier
impl Sync for ProxyQualityTier
impl Unpin for ProxyQualityTier
impl UnsafeUnpin for ProxyQualityTier
impl UnwindSafe for ProxyQualityTier
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more