pub enum AdaptationFieldError {
FieldNotPresent,
NotEnoughData,
SpliceTimestampError(TimestampError),
}
Expand description
Some error encountered while parsing adaptation field syntax
Variants§
FieldNotPresent
The an optional field’s value was requested, but the field is not actually present
NotEnoughData
There is a syntactic problem in the adaptation field being parsed, and not enough data is present in the stream to hold the requested component which is supposed to be present.
SpliceTimestampError(TimestampError)
The seamless_splice()
function found a syntax error is the adaptation field data holding
the seamless_splice field.
Trait Implementations§
Source§impl Debug for AdaptationFieldError
impl Debug for AdaptationFieldError
Source§impl PartialEq for AdaptationFieldError
impl PartialEq for AdaptationFieldError
impl Eq for AdaptationFieldError
impl StructuralPartialEq for AdaptationFieldError
Auto Trait Implementations§
impl Freeze for AdaptationFieldError
impl RefUnwindSafe for AdaptationFieldError
impl Send for AdaptationFieldError
impl Sync for AdaptationFieldError
impl Unpin for AdaptationFieldError
impl UnwindSafe for AdaptationFieldError
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