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