pub struct ProxyTranscodeJob {
pub request: ProxyRequest,
pub status: JobStatus,
pub started_at_ms: Option<u64>,
pub completed_at_ms: Option<u64>,
pub output_path: Option<String>,
pub error: Option<String>,
}Expand description
A proxy transcode job with its current status and timing information.
Fields§
§request: ProxyRequestThe original request.
status: JobStatusCurrent job status.
started_at_ms: Option<u64>When the job started, in milliseconds since epoch.
completed_at_ms: Option<u64>When the job completed (or failed), in milliseconds since epoch.
output_path: Option<String>Path to the output proxy file (set on completion).
error: Option<String>Error message if the job failed.
Implementations§
Source§impl ProxyTranscodeJob
impl ProxyTranscodeJob
Sourcepub fn new(request: ProxyRequest) -> Self
pub fn new(request: ProxyRequest) -> Self
Create a new job in the Queued state.
Sourcepub fn wait_duration_ms(&self) -> Option<u64>
pub fn wait_duration_ms(&self) -> Option<u64>
Duration the job waited in the queue before starting, in milliseconds.
Sourcepub fn processing_duration_ms(&self) -> Option<u64>
pub fn processing_duration_ms(&self) -> Option<u64>
Total processing duration, in milliseconds.
Trait Implementations§
Source§impl Clone for ProxyTranscodeJob
impl Clone for ProxyTranscodeJob
Source§fn clone(&self) -> ProxyTranscodeJob
fn clone(&self) -> ProxyTranscodeJob
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 ProxyTranscodeJob
impl Debug for ProxyTranscodeJob
Source§impl<'de> Deserialize<'de> for ProxyTranscodeJob
impl<'de> Deserialize<'de> for ProxyTranscodeJob
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProxyTranscodeJob
impl RefUnwindSafe for ProxyTranscodeJob
impl Send for ProxyTranscodeJob
impl Sync for ProxyTranscodeJob
impl Unpin for ProxyTranscodeJob
impl UnsafeUnpin for ProxyTranscodeJob
impl UnwindSafe for ProxyTranscodeJob
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