#[repr(u8)]pub enum Ops {
Request,
Reply,
Other(u8),
}Expand description
Variants of an op field in Message.
Variants§
Request
- Client sending a request to the server
Reply
- Server sending a reply to the client
Other(u8)
Not implemented
Trait Implementations§
impl StructuralPartialEq for Ops
Auto Trait Implementations§
impl Freeze for Ops
impl RefUnwindSafe for Ops
impl Send for Ops
impl Sync for Ops
impl Unpin for Ops
impl UnwindSafe for Ops
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more