pub struct NativeMediaJob {
pub provider: String,
pub operation: NativeOperation,
pub job_id: String,
pub status: NativeMediaJobStatus,
pub model: Option<String>,
pub metadata: Option<Value>,
}Expand description
A submitted provider-native media job.
Fields§
§provider: String§operation: NativeOperation§job_id: String§status: NativeMediaJobStatus§model: Option<String>§metadata: Option<Value>Trait Implementations§
Source§impl Clone for NativeMediaJob
impl Clone for NativeMediaJob
Source§fn clone(&self) -> NativeMediaJob
fn clone(&self) -> NativeMediaJob
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 NativeMediaJob
impl Debug for NativeMediaJob
Source§impl<'de> Deserialize<'de> for NativeMediaJob
impl<'de> Deserialize<'de> for NativeMediaJob
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 NativeMediaJob
impl RefUnwindSafe for NativeMediaJob
impl Send for NativeMediaJob
impl Sync for NativeMediaJob
impl Unpin for NativeMediaJob
impl UnsafeUnpin for NativeMediaJob
impl UnwindSafe for NativeMediaJob
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