pub enum Orientation {
Row,
Column,
}Expand description
Identifies whether a FEC packet belongs to the is associated with a ‘row’ or a ‘column’ of media packets.
Variants§
Row
FEC packet protects a row (indicated by the D field in the spec having value 1).
Column
FEC packet protects a column (indicated by the D field in the spec having value 0).
Trait Implementations§
Source§impl Debug for Orientation
impl Debug for Orientation
Source§impl PartialEq for Orientation
impl PartialEq for Orientation
impl StructuralPartialEq for Orientation
Auto Trait Implementations§
impl Freeze for Orientation
impl RefUnwindSafe for Orientation
impl Send for Orientation
impl Sync for Orientation
impl Unpin for Orientation
impl UnwindSafe for Orientation
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