pub struct ClearDisplayMessage<C = CustomData>(/* private fields */);Expand description
Marker type for the ClearDisplayMessage action.
C is the type of the message’s customData field, defaulting to the
specification’s CustomData. Name another to read or write a vendor extension
through Client::call/Client::on, or
NoCustomData to discard it and pay one byte instead of
the field’s full width at every node of the message.
Trait Implementations§
Source§impl<C> Action for ClearDisplayMessage<C>
impl<C> Action for ClearDisplayMessage<C>
Auto Trait Implementations§
impl<C> Freeze for ClearDisplayMessage<C>
impl<C> RefUnwindSafe for ClearDisplayMessage<C>
impl<C> Send for ClearDisplayMessage<C>
impl<C> Sync for ClearDisplayMessage<C>
impl<C> Unpin for ClearDisplayMessage<C>
impl<C> UnsafeUnpin for ClearDisplayMessage<C>
impl<C> UnwindSafe for ClearDisplayMessage<C>
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