pub struct RungManifest {
pub rung_index: usize,
pub width: u32,
pub height: u32,
pub label: String,
pub relative_dir: String,
pub manifest: CmafTrackManifest,
}Expand description
One rung’s finalized CMAF manifest.
Fields§
§rung_index: usize§width: u32§height: u32§label: String§relative_dir: StringDirectory relative to the asset root, e.g. "video/720p".
manifest: CmafTrackManifestTrait Implementations§
Source§impl Clone for RungManifest
impl Clone for RungManifest
Source§fn clone(&self) -> RungManifest
fn clone(&self) -> RungManifest
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 RungManifest
impl RefUnwindSafe for RungManifest
impl Send for RungManifest
impl Sync for RungManifest
impl Unpin for RungManifest
impl UnsafeUnpin for RungManifest
impl UnwindSafe for RungManifest
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