pub enum DirectiveSendOp {
IdentifyEnable,
StreamsReleaseIdentifier,
StreamsReleaseResource,
Raw(u8),
}Expand description
Directive Send Operation (doper).
Variants§
IdentifyEnable
Identify Directive — Enable Directive.
StreamsReleaseIdentifier
Streams — Release Identifier.
StreamsReleaseResource
Streams — Release Resource.
Raw(u8)
Raw operation code for vendor-specific directives.
Trait Implementations§
Source§impl Clone for DirectiveSendOp
impl Clone for DirectiveSendOp
Source§fn clone(&self) -> DirectiveSendOp
fn clone(&self) -> DirectiveSendOp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DirectiveSendOp
impl Debug for DirectiveSendOp
Source§impl PartialEq for DirectiveSendOp
impl PartialEq for DirectiveSendOp
Source§fn eq(&self, other: &DirectiveSendOp) -> bool
fn eq(&self, other: &DirectiveSendOp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DirectiveSendOp
impl Eq for DirectiveSendOp
impl StructuralPartialEq for DirectiveSendOp
Auto Trait Implementations§
impl Freeze for DirectiveSendOp
impl RefUnwindSafe for DirectiveSendOp
impl Send for DirectiveSendOp
impl Sync for DirectiveSendOp
impl Unpin for DirectiveSendOp
impl UnsafeUnpin for DirectiveSendOp
impl UnwindSafe for DirectiveSendOp
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