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 TakeFrom<WireFrameworkError> for FrameworkError
impl TakeFrom<WireFrameworkError> for FrameworkError
§fn take_from(from: &WireFrameworkError) -> FrameworkError
fn take_from(from: &WireFrameworkError) -> FrameworkError
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read more§impl ZeroPadding for WireFrameworkError
impl ZeroPadding for WireFrameworkError
§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