pub struct WireStatusError { /* private fields */ }
Expand description
The wire type corresponding to StatusError
.
Implementations§
Source§impl WireStatusError
impl WireStatusError
pub const PROVIDER: WireStatusError
pub const RESPONSE_INVALID: WireStatusError
pub const STATUS_UNKNOWN: WireStatusError
pub const UNSUPPORTED: WireStatusError
Trait Implementations§
Source§impl Clone for WireStatusError
impl Clone for WireStatusError
Source§fn clone(&self) -> WireStatusError
fn clone(&self) -> WireStatusError
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 moreSource§impl Debug for WireStatusError
impl Debug for WireStatusError
Source§impl<___D> Decode<___D> for WireStatusErrorwhere
___D: ?Sized,
impl<___D> Decode<___D> for WireStatusErrorwhere
___D: ?Sized,
Source§impl From<StatusError> for WireStatusError
impl From<StatusError> for WireStatusError
Source§fn from(natural: StatusError) -> Self
fn from(natural: StatusError) -> Self
Converts to this type from the input type.
Source§impl From<WireStatusError> for StatusError
impl From<WireStatusError> for StatusError
Source§fn from(wire: WireStatusError) -> Self
fn from(wire: WireStatusError) -> Self
Converts to this type from the input type.
Source§impl FromWire<WireStatusError> for StatusError
impl FromWire<WireStatusError> for StatusError
Source§fn from_wire(wire: WireStatusError) -> Self
fn from_wire(wire: WireStatusError) -> Self
Converts the given
wire
to this type.§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl FromWireRef<WireStatusError> for StatusError
impl FromWireRef<WireStatusError> for StatusError
Source§fn from_wire_ref(wire: &WireStatusError) -> Self
fn from_wire_ref(wire: &WireStatusError) -> Self
Converts the given
wire
reference to this type.Source§impl PartialEq for WireStatusError
impl PartialEq for WireStatusError
Source§impl Wire for WireStatusError
impl Wire for WireStatusError
Source§type Decoded<'de> = WireStatusError
type Decoded<'de> = WireStatusError
The decoded wire type, restricted to the
'de
lifetime.Source§fn zero_padding(_: &mut MaybeUninit<Self>)
fn zero_padding(_: &mut MaybeUninit<Self>)
Writes zeroes to the padding for this type, if any.
impl Copy for WireStatusError
impl Eq for WireStatusError
impl StructuralPartialEq for WireStatusError
Auto Trait Implementations§
impl Freeze for WireStatusError
impl RefUnwindSafe for WireStatusError
impl Send for WireStatusError
impl Sync for WireStatusError
impl Unpin for WireStatusError
impl UnwindSafe for WireStatusError
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