#[non_exhaustive]pub enum RepresentationKind {
Original,
Proxy,
Optimized,
Derived,
}Expand description
The semantic role of an asset representation.
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.
Original
Source media as imported.
Proxy
A lower-cost representation intended for interactive work.
Optimized
A representation optimized for a particular workflow.
Derived
Media derived from another production operation.
Trait Implementations§
Source§impl Clone for RepresentationKind
impl Clone for RepresentationKind
Source§fn clone(&self) -> RepresentationKind
fn clone(&self) -> RepresentationKind
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 moreimpl Copy for RepresentationKind
Source§impl Debug for RepresentationKind
impl Debug for RepresentationKind
impl Eq for RepresentationKind
Source§impl Hash for RepresentationKind
impl Hash for RepresentationKind
Source§impl PartialEq for RepresentationKind
impl PartialEq for RepresentationKind
Source§fn eq(&self, other: &RepresentationKind) -> bool
fn eq(&self, other: &RepresentationKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RepresentationKind
Auto Trait Implementations§
impl Freeze for RepresentationKind
impl RefUnwindSafe for RepresentationKind
impl Send for RepresentationKind
impl Sync for RepresentationKind
impl Unpin for RepresentationKind
impl UnsafeUnpin for RepresentationKind
impl UnwindSafe for RepresentationKind
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