pub enum RegisterOperationStatus {
Failure {
err_code: u32,
err_msg: String,
},
Success(String),
None,
}Variants§
Trait Implementations§
Source§impl Clone for RegisterOperationStatus
impl Clone for RegisterOperationStatus
Source§fn clone(&self) -> RegisterOperationStatus
fn clone(&self) -> RegisterOperationStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RegisterOperationStatus
impl RefUnwindSafe for RegisterOperationStatus
impl Send for RegisterOperationStatus
impl Sync for RegisterOperationStatus
impl Unpin for RegisterOperationStatus
impl UnwindSafe for RegisterOperationStatus
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