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 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 WireFrameworkError
impl Debug for WireFrameworkError
Source§impl<D: ?Sized> Decode<D> for WireFrameworkError
impl<D: ?Sized> Decode<D> for WireFrameworkError
Source§impl From<WireFrameworkError> for FrameworkError
impl From<WireFrameworkError> for FrameworkError
Source§fn from(value: WireFrameworkError) -> Self
fn from(value: WireFrameworkError) -> Self
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) -> Self
fn from_wire(wire: WireFrameworkError) -> Self
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) -> Self
fn from_wire_ref(wire: &WireFrameworkError) -> Self
Converts the given
wire
reference to this type.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<Self>)
fn zero_padding(_: &mut MaybeUninit<Self>)
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