#[non_exhaustive]pub struct HlsMasterWriteError {
pub master_name: String,
pub detail: String,
}Expand description
Master playlist write failed after every HLS rendition transcode succeeded.
The media playlists may already be on disk; only the master file (or the
BANDWIDTH measurement that feeds it) failed. Display always starts with
transcode succeeded so operators do not treat this as an encoder miss.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.master_name: StringMaster playlist file name the recipe tried to write.
detail: StringWhy the write, or the BANDWIDTH measurement that feeds it, failed.
Trait Implementations§
Source§impl Clone for HlsMasterWriteError
impl Clone for HlsMasterWriteError
Source§fn clone(&self) -> HlsMasterWriteError
fn clone(&self) -> HlsMasterWriteError
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 HlsMasterWriteError
impl Debug for HlsMasterWriteError
Source§impl Display for HlsMasterWriteError
impl Display for HlsMasterWriteError
Source§impl Error for HlsMasterWriteError
impl Error for HlsMasterWriteError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<HlsMasterWriteError> for Error
impl From<HlsMasterWriteError> for Error
Source§fn from(err: HlsMasterWriteError) -> Self
fn from(err: HlsMasterWriteError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HlsMasterWriteError
impl RefUnwindSafe for HlsMasterWriteError
impl Send for HlsMasterWriteError
impl Sync for HlsMasterWriteError
impl Unpin for HlsMasterWriteError
impl UnsafeUnpin for HlsMasterWriteError
impl UnwindSafe for HlsMasterWriteError
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