pub struct WireResolverError { /* private fields */ }
Expand description
The wire type corresponding to ResolverError
.
Implementations§
Source§impl WireResolverError
impl WireResolverError
pub const INTERNAL: WireResolverError
pub const IO: WireResolverError
pub const INVALID_ARGS: WireResolverError
pub const NOT_SUPPORTED: WireResolverError
pub const MANIFEST_NOT_FOUND: WireResolverError
pub const PACKAGE_NOT_FOUND: WireResolverError
pub const NO_SPACE: WireResolverError
pub const RESOURCE_UNAVAILABLE: WireResolverError
pub const INVALID_MANIFEST: WireResolverError
pub const CONFIG_VALUES_NOT_FOUND: WireResolverError
pub const ABI_REVISION_NOT_FOUND: WireResolverError
pub const INVALID_ABI_REVISION: WireResolverError
Trait Implementations§
Source§impl Clone for WireResolverError
impl Clone for WireResolverError
Source§fn clone(&self) -> WireResolverError
fn clone(&self) -> WireResolverError
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 WireResolverError
impl Debug for WireResolverError
Source§impl<___D> Decode<___D> for WireResolverErrorwhere
___D: ?Sized,
impl<___D> Decode<___D> for WireResolverErrorwhere
___D: ?Sized,
Source§impl From<ResolverError> for WireResolverError
impl From<ResolverError> for WireResolverError
Source§fn from(natural: ResolverError) -> Self
fn from(natural: ResolverError) -> Self
Converts to this type from the input type.
Source§impl From<WireResolverError> for ResolverError
impl From<WireResolverError> for ResolverError
Source§fn from(wire: WireResolverError) -> Self
fn from(wire: WireResolverError) -> Self
Converts to this type from the input type.
Source§impl FromWire<WireResolverError> for ResolverError
impl FromWire<WireResolverError> for ResolverError
Source§fn from_wire(wire: WireResolverError) -> Self
fn from_wire(wire: WireResolverError) -> Self
Converts the given
wire
to this type.§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl FromWireRef<WireResolverError> for ResolverError
impl FromWireRef<WireResolverError> for ResolverError
Source§fn from_wire_ref(wire: &WireResolverError) -> Self
fn from_wire_ref(wire: &WireResolverError) -> Self
Converts the given
wire
reference to this type.Source§impl PartialEq for WireResolverError
impl PartialEq for WireResolverError
Source§impl Wire for WireResolverError
impl Wire for WireResolverError
Source§type Decoded<'de> = WireResolverError
type Decoded<'de> = WireResolverError
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 WireResolverError
impl Eq for WireResolverError
impl StructuralPartialEq for WireResolverError
Auto Trait Implementations§
impl Freeze for WireResolverError
impl RefUnwindSafe for WireResolverError
impl Send for WireResolverError
impl Sync for WireResolverError
impl Unpin for WireResolverError
impl UnwindSafe for WireResolverError
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