pub struct JobResponse {
pub job_id: String,
pub status: String,
pub cost_ticks: i64,
pub extra: HashMap<String, Value>,
}Expand description
Response from async video job submission.
Fields§
§job_id: StringJob identifier for polling status.
status: StringCurrent status.
cost_ticks: i64Total cost in ticks (may be 0 until job completes).
extra: HashMap<String, Value>Additional response fields.
Trait Implementations§
Source§impl Clone for JobResponse
impl Clone for JobResponse
Source§fn clone(&self) -> JobResponse
fn clone(&self) -> JobResponse
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 JobResponse
impl Debug for JobResponse
Source§impl<'de> Deserialize<'de> for JobResponse
impl<'de> Deserialize<'de> for JobResponse
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 JobResponse
impl RefUnwindSafe for JobResponse
impl Send for JobResponse
impl Sync for JobResponse
impl Unpin for JobResponse
impl UnsafeUnpin for JobResponse
impl UnwindSafe for JobResponse
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