pub struct Unsupported<T>(/* private fields */);
Expand description
A marker type that indicates that only unsupported tags of the given type may be parsed.
For example, to extract any unsupported management frame, the
Buffered<Unsupported<MgmtFrame>>
type can be used.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Unsupported<T>
impl<T> RefUnwindSafe for Unsupported<T>
impl<T> Send for Unsupported<T>
impl<T> Sync for Unsupported<T>
impl<T> Unpin for Unsupported<T>
impl<T> UnwindSafe for Unsupported<T>
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