pub struct OptionalHandle { /* private fields */ }Expand description
An optional Zircon handle.
Implementations§
Source§impl OptionalHandle
impl OptionalHandle
Sourcepub fn set_encoded_present(out: &mut MaybeUninit<Self>)
pub fn set_encoded_present(out: &mut MaybeUninit<Self>)
Encodes a handle as present in a slot.
Sourcepub fn set_encoded_absent(out: &mut MaybeUninit<Self>)
pub fn set_encoded_absent(out: &mut MaybeUninit<Self>)
Encodes a handle as absent in an output.
Sourcepub fn as_raw_handle(&self) -> Option<zx_handle_t>
pub fn as_raw_handle(&self) -> Option<zx_handle_t>
Returns the underlying [zx_handle_t], if any.
Trait Implementations§
Source§impl Constrained for OptionalHandle
impl Constrained for OptionalHandle
Source§type Constraint = ()
type Constraint = ()
Type of constraint information for this type.
Source§fn validate(
_: Slot<'_, Self>,
_: Self::Constraint,
) -> Result<(), ValidationError>
fn validate( _: Slot<'_, Self>, _: Self::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 OptionalHandle
impl Debug for OptionalHandle
Source§impl<D: HandleDecoder + ?Sized> Decode<D> for OptionalHandle
impl<D: HandleDecoder + ?Sized> Decode<D> for OptionalHandle
Source§impl<E: HandleEncoder + ?Sized> EncodeOption<OptionalHandle, E> for NullableHandle
impl<E: HandleEncoder + ?Sized> EncodeOption<OptionalHandle, E> for NullableHandle
Source§fn encode_option(
this: Option<Self>,
encoder: &mut E,
out: &mut MaybeUninit<OptionalHandle>,
_constraint: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<OptionalHandle>, _constraint: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl FromWireOption<OptionalHandle> for NullableHandle
impl FromWireOption<OptionalHandle> for NullableHandle
Source§fn from_wire_option(wire: OptionalHandle) -> Option<Self>
fn from_wire_option(wire: OptionalHandle) -> Option<Self>
Converts the given owned value to an option of this type.
Source§impl IntoNatural for OptionalHandle
impl IntoNatural for OptionalHandle
Source§type Natural = Option<NullableHandle>
type Natural = Option<NullableHandle>
A good default type for this wire type to convert into.
Source§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl Wire for OptionalHandle
impl Wire for OptionalHandle
Source§type Narrowed<'de> = OptionalHandle
type Narrowed<'de> = OptionalHandle
The narrowed wire type, restricted to the
'de lifetime.Source§fn zero_padding(out: &mut MaybeUninit<Self>)
fn zero_padding(out: &mut MaybeUninit<Self>)
Writes zeroes to the padding for this type, if any.
Auto Trait Implementations§
impl Freeze for OptionalHandle
impl RefUnwindSafe for OptionalHandle
impl Send for OptionalHandle
impl Sync for OptionalHandle
impl Unpin for OptionalHandle
impl UnwindSafe for OptionalHandle
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