pub enum TransportError {
InvalidRequest,
InvalidParamsBuffer,
InvalidResultBuffer,
InvokeFailed,
UnsupportedOpcode,
TransferNotSupported,
InvalidTransferDescriptor,
TransferAborted,
Unknown(i32),
}Variants§
InvalidRequest
InvalidParamsBuffer
InvalidResultBuffer
InvokeFailed
UnsupportedOpcode
TransferNotSupported
InvalidTransferDescriptor
TransferAborted
Unknown(i32)
Implementations§
Source§impl TransportError
impl TransportError
pub const fn from_cqe_result(result: i32) -> Option<TransportError>
Trait Implementations§
Source§impl Clone for TransportError
impl Clone for TransportError
Source§fn clone(&self) -> TransportError
fn clone(&self) -> TransportError
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 moreimpl Copy for TransportError
Source§impl Debug for TransportError
impl Debug for TransportError
impl Eq for TransportError
Source§impl PartialEq for TransportError
impl PartialEq for TransportError
impl StructuralPartialEq for TransportError
Auto Trait Implementations§
impl Freeze for TransportError
impl RefUnwindSafe for TransportError
impl Send for TransportError
impl Sync for TransportError
impl Unpin for TransportError
impl UnsafeUnpin for TransportError
impl UnwindSafe for TransportError
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