#[non_exhaustive]pub enum FbVal<'a> {
Ack(FbAckParam<'a>),
Nack(FbNackParam<'a>),
TrrInt(u32),
RtcpFbId {
id: Cow<'a, str>,
param: Option<FbParam<'a>>,
},
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
impl<'a> Eq for FbVal<'a>
impl<'a> StructuralPartialEq for FbVal<'a>
Auto Trait Implementations§
impl<'a> Freeze for FbVal<'a>
impl<'a> RefUnwindSafe for FbVal<'a>
impl<'a> Send for FbVal<'a>
impl<'a> Sync for FbVal<'a>
impl<'a> Unpin for FbVal<'a>
impl<'a> UnwindSafe for FbVal<'a>
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