pub struct WireFrameworkError { /* private fields */ }
Expand description
An internal framework error.
Trait Implementations§
Source§impl Clone for WireFrameworkError
impl Clone for WireFrameworkError
Source§fn clone(&self) -> WireFrameworkError
fn clone(&self) -> WireFrameworkError
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 WireFrameworkError
impl Debug for WireFrameworkError
Source§impl<D> Decode<D> for WireFrameworkErrorwhere
D: ?Sized,
impl<D> Decode<D> for WireFrameworkErrorwhere
D: ?Sized,
Source§fn decode(
slot: Slot<'_, WireFrameworkError>,
_: &mut D,
) -> Result<(), DecodeError>
fn decode( slot: Slot<'_, WireFrameworkError>, _: &mut D, ) -> Result<(), DecodeError>
Decodes a value into a slot using a decoder. Read more
Source§impl From<WireFrameworkError> for FrameworkError
impl From<WireFrameworkError> for FrameworkError
Source§fn from(value: WireFrameworkError) -> FrameworkError
fn from(value: WireFrameworkError) -> FrameworkError
Converts to this type from the input type.
Source§impl FromWire<WireFrameworkError> for FrameworkError
impl FromWire<WireFrameworkError> for FrameworkError
Source§fn from_wire(wire: WireFrameworkError) -> FrameworkError
fn from_wire(wire: WireFrameworkError) -> FrameworkError
Converts the given
wire
to this type.Source§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl FromWireRef<WireFrameworkError> for FrameworkError
impl FromWireRef<WireFrameworkError> for FrameworkError
Source§fn from_wire_ref(wire: &WireFrameworkError) -> FrameworkError
fn from_wire_ref(wire: &WireFrameworkError) -> FrameworkError
Converts the given
wire
reference to this type.Source§impl IntoNatural for WireFrameworkError
impl IntoNatural for WireFrameworkError
Source§type Natural = FrameworkError
type Natural = FrameworkError
A good default type for this wire type to convert into.
Source§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl Wire for WireFrameworkError
impl Wire for WireFrameworkError
Source§type Decoded<'de> = WireFrameworkError
type Decoded<'de> = WireFrameworkError
The decoded wire type, restricted to the
'de
lifetime.Source§fn zero_padding(_: &mut MaybeUninit<WireFrameworkError>)
fn zero_padding(_: &mut MaybeUninit<WireFrameworkError>)
Writes zeroes to the padding for this type, if any.
impl Copy for WireFrameworkError
Auto Trait Implementations§
impl Freeze for WireFrameworkError
impl RefUnwindSafe for WireFrameworkError
impl Send for WireFrameworkError
impl Sync for WireFrameworkError
impl Unpin for WireFrameworkError
impl UnwindSafe for WireFrameworkError
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