pub struct Transcoding {
pub id: String,
pub recording_ids: Vec<String>,
pub room_id: Option<String>,
pub session_id: Option<String>,
pub hls_id: Option<String>,
pub status: Option<TranscodingStatus>,
pub task: Option<TranscodingTask>,
pub started_at: Option<String>,
pub stopped_at: Option<String>,
pub file: Option<TranscodingFile>,
pub webhook: Option<WebhookDeliverySummary>,
pub extra: Map<String, Value>,
}Expand description
A transcoding job.
Fields§
§id: StringThe job id.
recording_ids: Vec<String>The recordings that were transcoded.
room_id: Option<String>The room the job relates to.
session_id: Option<String>The session the job relates to.
hls_id: Option<String>The HLS stream the job relates to.
status: Option<TranscodingStatus>The job’s status.
task: Option<TranscodingTask>The job’s kind.
started_at: Option<String>When the job started.
stopped_at: Option<String>When the job stopped.
file: Option<TranscodingFile>The produced file.
webhook: Option<WebhookDeliverySummary>A summary of the webhook deliveries for this job.
extra: Map<String, Value>Any fields the server returned that this SDK does not model yet.
Trait Implementations§
Source§impl Clone for Transcoding
impl Clone for Transcoding
Source§fn clone(&self) -> Transcoding
fn clone(&self) -> Transcoding
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 Transcoding
impl Debug for Transcoding
Source§impl<'de> Deserialize<'de> for Transcoding
impl<'de> Deserialize<'de> for Transcoding
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 Transcoding
impl RefUnwindSafe for Transcoding
impl Send for Transcoding
impl Sync for Transcoding
impl Unpin for Transcoding
impl UnsafeUnpin for Transcoding
impl UnwindSafe for Transcoding
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