pub struct WireChannel { /* private fields */ }
Expand description
A Zircon channel.
Implementations§
Source§impl WireChannel
impl WireChannel
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 is_invalid(&self) -> bool
pub fn is_invalid(&self) -> bool
Returns whether the underlying zx_handle_t
is invalid.
Sourcepub fn take(&mut self) -> Channel
pub fn take(&mut self) -> Channel
Takes the channel, if any, leaving an invalid handle in its place.
Sourcepub fn as_raw_handle(&self) -> zx_handle_t
pub fn as_raw_handle(&self) -> zx_handle_t
Returns the underlying zx_handle_t
.
Trait Implementations§
Source§impl Debug for WireChannel
impl Debug for WireChannel
Source§impl<D: HandleDecoder + ?Sized> Decode<D> for WireChannel
impl<D: HandleDecoder + ?Sized> Decode<D> for WireChannel
Source§impl TakeFrom<WireChannel> for Channel
impl TakeFrom<WireChannel> for Channel
Source§fn take_from(from: &mut WireChannel) -> Self
fn take_from(from: &mut WireChannel) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.Auto Trait Implementations§
impl Freeze for WireChannel
impl RefUnwindSafe for WireChannel
impl Send for WireChannel
impl Sync for WireChannel
impl Unpin for WireChannel
impl UnwindSafe for WireChannel
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