pub enum RungArtifact {
File(Vec<u8>),
HlsRendition {
dir: PathBuf,
relative_dir: String,
},
}Expand description
The artifact one rung produced.
Variants§
File(Vec<u8>)
A single self-contained file (MP4 bytes).
HlsRendition
An HLS rendition: a directory of CMAF segments + a media playlist.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RungArtifact
impl RefUnwindSafe for RungArtifact
impl Send for RungArtifact
impl Sync for RungArtifact
impl Unpin for RungArtifact
impl UnsafeUnpin for RungArtifact
impl UnwindSafe for RungArtifact
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