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