pub enum FlexFecParseError {
Truncated,
RetransmissionBitSet,
InflexibleGeneratorMatrix,
MultipleSsrcProtection,
UnterminatedPacketMask,
}Expand description
Why a repair packet could not be used.
Variants§
Truncated
Shorter than the fields it claims to carry.
RetransmissionBitSet
The retransmission bit is set; this scheme does not carry retransmissions.
InflexibleGeneratorMatrix
The F bit selects the inflexible generator matrix, which draft-03 does not define here.
MultipleSsrcProtection
Draft-03 protects exactly one stream per repair packet.
UnterminatedPacketMask
The last packet mask did not set its k-bit, so the header never terminates.
Trait Implementations§
Source§impl Clone for ParseError
impl Clone for ParseError
Source§fn clone(&self) -> ParseError
fn clone(&self) -> ParseError
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 moreimpl Copy for ParseError
Source§impl Debug for ParseError
impl Debug for ParseError
impl Eq for ParseError
Source§impl PartialEq for ParseError
impl PartialEq for ParseError
impl StructuralPartialEq for ParseError
Auto Trait Implementations§
impl Freeze for ParseError
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnsafeUnpin for ParseError
impl UnwindSafe for ParseError
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