Struct WireFrameworkError
pub struct WireFrameworkError { /* private fields */ }
Expand description
An internal framework error.
Trait Implementations§
§impl Clone for WireFrameworkError
impl Clone for WireFrameworkError
§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 more§impl Debug for WireFrameworkError
impl Debug for WireFrameworkError
§impl<D> Decode<D> for WireFrameworkErrorwhere
D: ?Sized,
impl<D> Decode<D> for WireFrameworkErrorwhere
D: ?Sized,
§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
§impl From<WireFrameworkError> for FrameworkError
impl From<WireFrameworkError> for FrameworkError
§fn from(value: WireFrameworkError) -> FrameworkError
fn from(value: WireFrameworkError) -> FrameworkError
Converts to this type from the input type.
§impl FromWire<WireFrameworkError> for FrameworkError
impl FromWire<WireFrameworkError> for FrameworkError
§fn from_wire(wire: WireFrameworkError) -> FrameworkError
fn from_wire(wire: WireFrameworkError) -> FrameworkError
Converts the given
wire
to this type.§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
§impl FromWireRef<WireFrameworkError> for FrameworkError
impl FromWireRef<WireFrameworkError> for FrameworkError
§fn from_wire_ref(wire: &WireFrameworkError) -> FrameworkError
fn from_wire_ref(wire: &WireFrameworkError) -> FrameworkError
Converts the given
wire
reference to this type.§impl Wire for WireFrameworkError
impl Wire for WireFrameworkError
§type Decoded<'de> = WireFrameworkError
type Decoded<'de> = WireFrameworkError
The decoded wire type, restricted to the
'de
lifetime.§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