pub struct WireOptionalChannel { /* private fields */ }
Expand description
An optional Zircon channel.
Implementations§
Source§impl WireOptionalChannel
impl WireOptionalChannel
Sourcepub fn set_encoded_present(slot: Slot<'_, Self>)
pub fn set_encoded_present(slot: Slot<'_, Self>)
Encodes a channel as present in a slot.
Sourcepub fn set_encoded_absent(slot: Slot<'_, Self>)
pub fn set_encoded_absent(slot: Slot<'_, Self>)
Encodes a channel as absent in a slot.
Sourcepub fn take(&mut self) -> Option<Channel>
pub fn take(&mut self) -> Option<Channel>
Takes the channel, if any, leaving an invalid channel in its place.
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 Debug for WireOptionalChannel
impl Debug for WireOptionalChannel
Source§impl TakeFrom<WireOptionalChannel> for Option<Channel>
impl TakeFrom<WireOptionalChannel> for Option<Channel>
Source§fn take_from(from: &mut WireOptionalChannel) -> Self
fn take_from(from: &mut WireOptionalChannel) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.Auto Trait Implementations§
impl Freeze for WireOptionalChannel
impl RefUnwindSafe for WireOptionalChannel
impl Send for WireOptionalChannel
impl Sync for WireOptionalChannel
impl Unpin for WireOptionalChannel
impl UnwindSafe for WireOptionalChannel
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