#[repr(i32)]pub enum FrameworkError {
UnknownMethod = -2,
}
Expand description
An internal framework error.
Variants§
UnknownMethod = -2
The protocol method was not recognized by the receiver.
Trait Implementations§
Source§impl Clone for FrameworkError
impl Clone for FrameworkError
Source§fn clone(&self) -> FrameworkError
fn clone(&self) -> FrameworkError
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 FrameworkError
impl Debug for FrameworkError
Source§impl Encodable for FrameworkError
impl Encodable for FrameworkError
Source§type Encoded = WireFrameworkError
type Encoded = WireFrameworkError
The wire type for the value.
Source§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
encoding instead of calling
encode
. Read moreSource§impl<E: ?Sized> Encode<E> for FrameworkError
impl<E: ?Sized> Encode<E> for FrameworkError
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 TakeFrom<WireFrameworkError> for FrameworkError
impl TakeFrom<WireFrameworkError> for FrameworkError
Source§fn take_from(from: &WireFrameworkError) -> Self
fn take_from(from: &WireFrameworkError) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.Source§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 moreimpl Copy for FrameworkError
Auto Trait Implementations§
impl Freeze for FrameworkError
impl RefUnwindSafe for FrameworkError
impl Send for FrameworkError
impl Sync for FrameworkError
impl Unpin for FrameworkError
impl UnwindSafe for FrameworkError
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