pub struct MetalTranscodeRouteReport {
pub request: BackendRequest,
pub selected_transform_backend: BackendKind,
pub output_backend: BackendKind,
pub fallback_reason: Option<MetalTranscodeFallbackReason>,
pub pipeline_map: TranscodePipelineMap,
}Expand description
Public route report for Metal-adapted JPEG-to-HTJ2K transcode calls.
Fields§
§request: BackendRequestCaller backend request.
selected_transform_backend: BackendKindBackend that handled transform stages.
output_backend: BackendKindBackend that produced the public codestream byte vector.
fallback_reason: Option<MetalTranscodeFallbackReason>Structured CPU fallback reason when the route did not fully use Metal.
pipeline_map: TranscodePipelineMapStage residency map derived from the existing transcode timing counters.
Trait Implementations§
Source§impl Clone for MetalTranscodeRouteReport
impl Clone for MetalTranscodeRouteReport
Source§fn clone(&self) -> MetalTranscodeRouteReport
fn clone(&self) -> MetalTranscodeRouteReport
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 Debug for MetalTranscodeRouteReport
impl Debug for MetalTranscodeRouteReport
impl Eq for MetalTranscodeRouteReport
impl StructuralPartialEq for MetalTranscodeRouteReport
Auto Trait Implementations§
impl Freeze for MetalTranscodeRouteReport
impl RefUnwindSafe for MetalTranscodeRouteReport
impl Send for MetalTranscodeRouteReport
impl Sync for MetalTranscodeRouteReport
impl Unpin for MetalTranscodeRouteReport
impl UnsafeUnpin for MetalTranscodeRouteReport
impl UnwindSafe for MetalTranscodeRouteReport
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> 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