pub enum ReceivePackCommandStatus {
Ok {
name: String,
},
Ng {
name: String,
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for ReceivePackCommandStatus
impl Clone for ReceivePackCommandStatus
Source§fn clone(&self) -> ReceivePackCommandStatus
fn clone(&self) -> ReceivePackCommandStatus
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 ReceivePackCommandStatus
impl Debug for ReceivePackCommandStatus
impl Eq for ReceivePackCommandStatus
Source§impl PartialEq for ReceivePackCommandStatus
impl PartialEq for ReceivePackCommandStatus
Source§fn eq(&self, other: &ReceivePackCommandStatus) -> bool
fn eq(&self, other: &ReceivePackCommandStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReceivePackCommandStatus
Auto Trait Implementations§
impl Freeze for ReceivePackCommandStatus
impl RefUnwindSafe for ReceivePackCommandStatus
impl Send for ReceivePackCommandStatus
impl Sync for ReceivePackCommandStatus
impl Unpin for ReceivePackCommandStatus
impl UnsafeUnpin for ReceivePackCommandStatus
impl UnwindSafe for ReceivePackCommandStatus
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