pub struct PathEntry {
pub source_codec: &'static str,
pub source_format: PixelDescriptor,
pub source_effective_bits: u8,
pub operation: OpCategory,
pub output_codec: &'static str,
pub output_format: PixelDescriptor,
pub path: Option<ConversionPath>,
}Expand description
An entry in the full path matrix.
Fields§
§source_codec: &'static strSource codec name.
source_format: PixelDescriptorSource pixel format.
source_effective_bits: u8Effective bits of the source data.
operation: OpCategoryOperation category.
output_codec: &'static strOutput codec name.
output_format: PixelDescriptorOutput pixel format.
path: Option<ConversionPath>The optimal conversion path (None if no path within threshold).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathEntry
impl RefUnwindSafe for PathEntry
impl Send for PathEntry
impl Sync for PathEntry
impl Unpin for PathEntry
impl UnsafeUnpin for PathEntry
impl UnwindSafe for PathEntry
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