#[repr(u8)]pub enum CltuOp {
Bind = 0,
BindReturn = 1,
Unbind = 2,
UnbindReturn = 3,
Start = 4,
StartReturn = 5,
Stop = 6,
StopReturn = 7,
TransferData = 8,
TransferDataReturn = 9,
}Expand description
CLTU operation tags (context-specific CHOICE tags).
Variants§
Bind = 0
Bind invocation.
BindReturn = 1
Bind return.
Unbind = 2
Unbind invocation.
UnbindReturn = 3
Unbind return.
Start = 4
Start invocation.
StartReturn = 5
Start return.
Stop = 6
Stop invocation.
StopReturn = 7
Stop return.
TransferData = 8
Transfer data invocation.
TransferDataReturn = 9
Transfer data return.
Trait Implementations§
impl Copy for CltuOp
impl Eq for CltuOp
impl StructuralPartialEq for CltuOp
Auto Trait Implementations§
impl Freeze for CltuOp
impl RefUnwindSafe for CltuOp
impl Send for CltuOp
impl Sync for CltuOp
impl Unpin for CltuOp
impl UnsafeUnpin for CltuOp
impl UnwindSafe for CltuOp
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