pub enum DirectiveRecvOp {
IdentifyReturnParameters,
StreamsReturnParameters,
StreamsGetStatus,
StreamsAllocateResources,
Raw(u8),
}Expand description
Directive Receive Operation (doper).
Variants§
IdentifyReturnParameters
Identify — Return Parameters.
StreamsReturnParameters
Streams — Return Parameters.
StreamsGetStatus
Streams — Get Status.
StreamsAllocateResources
Streams — Allocate Resources.
Raw(u8)
Raw operation code for vendor-specific directives.
Trait Implementations§
Source§impl Clone for DirectiveRecvOp
impl Clone for DirectiveRecvOp
Source§fn clone(&self) -> DirectiveRecvOp
fn clone(&self) -> DirectiveRecvOp
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 DirectiveRecvOp
impl Debug for DirectiveRecvOp
Source§impl PartialEq for DirectiveRecvOp
impl PartialEq for DirectiveRecvOp
Source§fn eq(&self, other: &DirectiveRecvOp) -> bool
fn eq(&self, other: &DirectiveRecvOp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DirectiveRecvOp
impl Eq for DirectiveRecvOp
impl StructuralPartialEq for DirectiveRecvOp
Auto Trait Implementations§
impl Freeze for DirectiveRecvOp
impl RefUnwindSafe for DirectiveRecvOp
impl Send for DirectiveRecvOp
impl Sync for DirectiveRecvOp
impl Unpin for DirectiveRecvOp
impl UnsafeUnpin for DirectiveRecvOp
impl UnwindSafe for DirectiveRecvOp
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