pub enum RemotingSysResponseCode {
Success = 0,
SystemError = 1,
SystemBusy = 2,
RequestCodeNotSupported = 3,
TransactionFailed = 4,
}Variants§
Trait Implementations§
source§impl Clone for RemotingSysResponseCode
impl Clone for RemotingSysResponseCode
source§fn clone(&self) -> RemotingSysResponseCode
fn clone(&self) -> RemotingSysResponseCode
Returns a copy 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 moresource§impl Debug for RemotingSysResponseCode
impl Debug for RemotingSysResponseCode
source§impl From<RemotingSysResponseCode> for i32
impl From<RemotingSysResponseCode> for i32
source§fn from(value: RemotingSysResponseCode) -> Self
fn from(value: RemotingSysResponseCode) -> Self
Converts to this type from the input type.
source§impl From<i32> for RemotingSysResponseCode
impl From<i32> for RemotingSysResponseCode
source§impl PartialEq for RemotingSysResponseCode
impl PartialEq for RemotingSysResponseCode
source§fn eq(&self, other: &RemotingSysResponseCode) -> bool
fn eq(&self, other: &RemotingSysResponseCode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for RemotingSysResponseCode
impl StructuralPartialEq for RemotingSysResponseCode
Auto Trait Implementations§
impl RefUnwindSafe for RemotingSysResponseCode
impl Send for RemotingSysResponseCode
impl Sync for RemotingSysResponseCode
impl Unpin for RemotingSysResponseCode
impl UnwindSafe for RemotingSysResponseCode
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