pub struct CoherencyDomain { /* private fields */ }Expand description
The wire type corresponding to CoherencyDomain.
Implementations§
Source§impl CoherencyDomain
impl CoherencyDomain
pub const CPU: CoherencyDomain
pub const RAM: CoherencyDomain
pub const INACCESSIBLE: CoherencyDomain
Trait Implementations§
Source§impl Clone for CoherencyDomain
impl Clone for CoherencyDomain
Source§fn clone(&self) -> CoherencyDomain
fn clone(&self) -> CoherencyDomain
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CoherencyDomain
impl Constrained for CoherencyDomain
Source§impl Debug for CoherencyDomain
impl Debug for CoherencyDomain
Source§impl<___D> Decode<___D> for CoherencyDomainwhere
___D: ?Sized,
impl<___D> Decode<___D> for CoherencyDomainwhere
___D: ?Sized,
Source§impl<'a, ___E> Encode<CoherencyDomain, ___E> for &'a CoherencyDomainwhere
___E: ?Sized,
impl<'a, ___E> Encode<CoherencyDomain, ___E> for &'a CoherencyDomainwhere
___E: ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<CoherencyDomain>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<CoherencyDomain>, _: (), ) -> 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<CoherencyDomain, ___E> for CoherencyDomainwhere
___E: ?Sized,
impl<___E> Encode<CoherencyDomain, ___E> for CoherencyDomainwhere
___E: ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<CoherencyDomain>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<CoherencyDomain>, _: (), ) -> 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<CoherencyDomain> for CoherencyDomain
impl From<CoherencyDomain> for CoherencyDomain
Source§fn from(wire: CoherencyDomain) -> Self
fn from(wire: CoherencyDomain) -> Self
Converts to this type from the input type.
Source§impl From<CoherencyDomain> for CoherencyDomain
impl From<CoherencyDomain> for CoherencyDomain
Source§fn from(natural: CoherencyDomain) -> Self
fn from(natural: CoherencyDomain) -> Self
Converts to this type from the input type.
Source§impl FromWire<CoherencyDomain> for CoherencyDomain
impl FromWire<CoherencyDomain> for CoherencyDomain
Source§fn from_wire(wire: CoherencyDomain) -> Self
fn from_wire(wire: CoherencyDomain) -> Self
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl FromWireRef<CoherencyDomain> for CoherencyDomain
impl FromWireRef<CoherencyDomain> for CoherencyDomain
Source§fn from_wire_ref(wire: &CoherencyDomain) -> Self
fn from_wire_ref(wire: &CoherencyDomain) -> Self
Converts the given reference to this type.
Source§impl IntoNatural for CoherencyDomain
impl IntoNatural for CoherencyDomain
Source§type Natural = CoherencyDomain
type Natural = CoherencyDomain
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 CoherencyDomain
impl PartialEq for CoherencyDomain
Source§fn eq(&self, other: &CoherencyDomain) -> bool
fn eq(&self, other: &CoherencyDomain) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Wire for CoherencyDomain
impl Wire for CoherencyDomain
Source§type Narrowed<'de> = CoherencyDomain
type Narrowed<'de> = CoherencyDomain
The narrowed 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 CoherencyDomain
impl Eq for CoherencyDomain
impl StructuralPartialEq for CoherencyDomain
Auto Trait Implementations§
impl Freeze for CoherencyDomain
impl RefUnwindSafe for CoherencyDomain
impl Send for CoherencyDomain
impl Sync for CoherencyDomain
impl Unpin for CoherencyDomain
impl UnsafeUnpin for CoherencyDomain
impl UnwindSafe for CoherencyDomain
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,
§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]