pub struct ExportSummary {
pub output_path: String,
pub codec_label: String,
pub profile_label: String,
pub color_space: String,
pub transfer: String,
pub rate_control: String,
pub frame_count: usize,
pub elapsed: Duration,
pub result: Result<(), String>,
}Expand description
Snapshot of the most recently finished export. Kept so the UI can show a post-render summary (codec, settings, elapsed time, output path, etc.) instead of immediately reverting to the preview panel.
Fields§
§output_path: String§codec_label: String§profile_label: String§color_space: String§transfer: String§rate_control: String§frame_count: usize§elapsed: Duration§result: Result<(), String>Trait Implementations§
Source§impl Clone for ExportSummary
impl Clone for ExportSummary
Source§fn clone(&self) -> ExportSummary
fn clone(&self) -> ExportSummary
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 moreAuto Trait Implementations§
impl Freeze for ExportSummary
impl RefUnwindSafe for ExportSummary
impl Send for ExportSummary
impl Sync for ExportSummary
impl Unpin for ExportSummary
impl UnsafeUnpin for ExportSummary
impl UnwindSafe for ExportSummary
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