pub struct DeletionError { /* private fields */ }Expand description
The wire type corresponding to DeletionError.
Implementations§
Source§impl DeletionError
impl DeletionError
pub const CONNECTION: DeletionError
pub const PROTOCOL: DeletionError
pub const NONE_AVAILABLE: DeletionError
pub const UNSUPPORTED: DeletionError
Trait Implementations§
Source§impl Clone for DeletionError
impl Clone for DeletionError
Source§fn clone(&self) -> DeletionError
fn clone(&self) -> DeletionError
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 Constrained for DeletionError
impl Constrained for DeletionError
Source§type Constraint = ()
type Constraint = ()
Type of constraint information for this type.
Source§fn validate(
_: Slot<'_, DeletionError>,
_: <DeletionError as Constrained>::Constraint,
) -> Result<(), ValidationError>
fn validate( _: Slot<'_, DeletionError>, _: <DeletionError as Constrained>::Constraint, ) -> Result<(), ValidationError>
Validate a slot of this type against a constraint. Can be called when
pointers/envelopes are just presence markers.
Source§impl Debug for DeletionError
impl Debug for DeletionError
Source§impl<___D> Decode<___D> for DeletionErrorwhere
___D: ?Sized,
impl<___D> Decode<___D> for DeletionErrorwhere
___D: ?Sized,
Source§impl<'a, ___E> Encode<DeletionError, ___E> for &'a DeletionErrorwhere
___E: ?Sized,
impl<'a, ___E> Encode<DeletionError, ___E> for &'a DeletionErrorwhere
___E: ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<DeletionError>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<DeletionError>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<___E> Encode<DeletionError, ___E> for DeletionErrorwhere
___E: ?Sized,
impl<___E> Encode<DeletionError, ___E> for DeletionErrorwhere
___E: ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<DeletionError>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<DeletionError>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl From<DeletionError> for DeletionError
impl From<DeletionError> for DeletionError
Source§fn from(wire: DeletionError) -> DeletionError
fn from(wire: DeletionError) -> DeletionError
Converts to this type from the input type.
Source§impl From<DeletionError> for DeletionError
impl From<DeletionError> for DeletionError
Source§fn from(natural: DeletionError) -> DeletionError
fn from(natural: DeletionError) -> DeletionError
Converts to this type from the input type.
Source§impl FromWire<DeletionError> for DeletionError
impl FromWire<DeletionError> for DeletionError
Source§fn from_wire(wire: DeletionError) -> DeletionError
fn from_wire(wire: DeletionError) -> DeletionError
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl FromWireRef<DeletionError> for DeletionError
impl FromWireRef<DeletionError> for DeletionError
Source§fn from_wire_ref(wire: &DeletionError) -> DeletionError
fn from_wire_ref(wire: &DeletionError) -> DeletionError
Converts the given reference to this type.
Source§impl IntoNatural for DeletionError
impl IntoNatural for DeletionError
Source§type Natural = DeletionError
type Natural = DeletionError
A good default type for this wire type to convert into.
§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl PartialEq for DeletionError
impl PartialEq for DeletionError
Source§impl Wire for DeletionError
impl Wire for DeletionError
Source§type Narrowed<'de> = DeletionError
type Narrowed<'de> = DeletionError
The narrowed wire type, restricted to the
'de lifetime.Source§fn zero_padding(_: &mut MaybeUninit<DeletionError>)
fn zero_padding(_: &mut MaybeUninit<DeletionError>)
Writes zeroes to the padding for this type, if any.
impl Copy for DeletionError
impl Eq for DeletionError
impl StructuralPartialEq for DeletionError
Auto Trait Implementations§
impl Freeze for DeletionError
impl RefUnwindSafe for DeletionError
impl Send for DeletionError
impl Sync for DeletionError
impl Unpin for DeletionError
impl UnsafeUnpin for DeletionError
impl UnwindSafe for DeletionError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]