pub struct HandleType(/* private fields */);
Expand description
We can’t link the fuchsia-runtime crate because it’s target side only, but we don’t really
need to – its HandleType is pretty much just a thin wrapper over u8
.
Trait Implementations§
Source§impl Clone for HandleType
impl Clone for HandleType
Source§fn clone(&self) -> HandleType
fn clone(&self) -> HandleType
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 Debug for HandleType
impl Debug for HandleType
Source§impl<'de> Deserialize<'de> for HandleType
impl<'de> Deserialize<'de> for HandleType
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<HandleType> for Name
impl From<HandleType> for Name
Source§fn from(numbered_handle: HandleType) -> Self
fn from(numbered_handle: HandleType) -> Self
Converts to this type from the input type.
Source§impl From<HandleType> for HandleType
impl From<HandleType> for HandleType
Source§fn from(h: HandleType) -> Self
fn from(h: HandleType) -> Self
Converts to this type from the input type.
Source§impl From<HandleType> for u8
impl From<HandleType> for u8
Source§fn from(h: HandleType) -> Self
fn from(h: HandleType) -> Self
Converts to this type from the input type.
Source§impl From<u8> for HandleType
impl From<u8> for HandleType
Source§impl PartialEq for HandleType
impl PartialEq for HandleType
Source§impl Serialize for HandleType
impl Serialize for HandleType
impl Copy for HandleType
impl Eq for HandleType
impl StructuralPartialEq for HandleType
Auto Trait Implementations§
impl Freeze for HandleType
impl RefUnwindSafe for HandleType
impl Send for HandleType
impl Sync for HandleType
impl Unpin for HandleType
impl UnwindSafe for HandleType
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, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.