#[non_exhaustive]pub enum FbNackParam<'a> {
Pli,
Sli,
Rpsi,
App(Cow<'a, str>),
Other(Cow<'a, str>, Cow<'a, str>),
}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§
Source§impl<'a> FbNackParam<'a>
impl<'a> FbNackParam<'a>
Sourcepub fn into_owned(self) -> FbNackParam<'static>
pub fn into_owned(self) -> FbNackParam<'static>
Returns a version of self with all fields converted to owning versions.
Trait Implementations§
Source§impl<'a> Clone for FbNackParam<'a>
impl<'a> Clone for FbNackParam<'a>
Source§fn clone(&self) -> FbNackParam<'a>
fn clone(&self) -> FbNackParam<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for FbNackParam<'a>
impl<'a> Debug for FbNackParam<'a>
Source§impl<'a> PartialEq for FbNackParam<'a>
impl<'a> PartialEq for FbNackParam<'a>
Source§impl uDisplay for FbNackParam<'_>
impl uDisplay for FbNackParam<'_>
impl<'a> Eq for FbNackParam<'a>
impl<'a> StructuralPartialEq for FbNackParam<'a>
Auto Trait Implementations§
impl<'a> Freeze for FbNackParam<'a>
impl<'a> RefUnwindSafe for FbNackParam<'a>
impl<'a> Send for FbNackParam<'a>
impl<'a> Sync for FbNackParam<'a>
impl<'a> Unpin for FbNackParam<'a>
impl<'a> UnwindSafe for FbNackParam<'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