Trait fidl::handle::fuchsia_handles::AsHandleRef

source ·
pub trait AsHandleRef {
    // Required method
    fn as_handle_ref(&self) -> Unowned<'_, Handle>;

    // Provided methods
    fn raw_handle(&self) -> u32 { ... }
    fn signal_handle(
        &self,
        clear_mask: Signals,
        set_mask: Signals,
    ) -> Result<(), Status> { ... }
    fn wait_handle(
        &self,
        signals: Signals,
        deadline: Instant<MonotonicTimeline>,
    ) -> Result<Signals, Status> { ... }
    fn wait_async_handle(
        &self,
        port: &Port,
        key: u64,
        signals: Signals,
        options: WaitAsyncOpts,
    ) -> Result<(), Status> { ... }
    fn get_name(&self) -> Result<Name, Status> { ... }
    fn set_name(&self, name: &Name) -> Result<(), Status> { ... }
    fn basic_info(&self) -> Result<HandleBasicInfo, Status> { ... }
    fn count_info(&self) -> Result<HandleCountInfo, Status> { ... }
    fn get_koid(&self) -> Result<Koid, Status> { ... }
}
Expand description

A trait to get a reference to the underlying handle of an object.

Required Methods§

source

fn as_handle_ref(&self) -> Unowned<'_, Handle>

Get a reference to the handle. One important use of such a reference is for object_wait_many.

Provided Methods§

source

fn raw_handle(&self) -> u32

Interpret the reference as a raw handle (an integer type). Two distinct handles will have different raw values (so it can perhaps be used as a key in a data structure).

source

fn signal_handle( &self, clear_mask: Signals, set_mask: Signals, ) -> Result<(), Status>

Set and clear userspace-accessible signal bits on an object. Wraps the zx_object_signal syscall.

source

fn wait_handle( &self, signals: Signals, deadline: Instant<MonotonicTimeline>, ) -> Result<Signals, Status>

Waits on a handle. Wraps the zx_object_wait_one syscall.

source

fn wait_async_handle( &self, port: &Port, key: u64, signals: Signals, options: WaitAsyncOpts, ) -> Result<(), Status>

Causes packet delivery on the given port when the object changes state and matches signals. zx_object_wait_async syscall.

source

fn get_name(&self) -> Result<Name, Status>

Get the Property::NAME property for this object.

Wraps a call to the zx_object_get_property syscall for the ZX_PROP_NAME property.

source

fn set_name(&self, name: &Name) -> Result<(), Status>

Set the Property::NAME property for this object.

The name’s length must be less than sys::ZX_MAX_NAME_LEN, i.e. name.to_bytes_with_nul().len() <= sys::ZX_MAX_NAME_LEN, or Err(Status::INVALID_ARGS) will be returned.

Wraps a call to the zx_object_get_property syscall for the ZX_PROP_NAME property.

source

fn basic_info(&self) -> Result<HandleBasicInfo, Status>

Wraps the zx_object_get_info syscall for the ZX_INFO_HANDLE_BASIC topic.

source

fn count_info(&self) -> Result<HandleCountInfo, Status>

Wraps the zx_object_get_info syscall for the ZX_INFO_HANDLE_COUNT topic.

source

fn get_koid(&self) -> Result<Koid, Status>

Returns the koid (kernel object ID) for this handle.

Implementations on Foreign Types§

§

impl<H> AsHandleRef for OnSignals<'_, H>
where H: AsHandleRef,

§

fn as_handle_ref(&self) -> Unowned<'_, Handle>

§

impl<R, W> AsHandleRef for Fifo<R, W>

§

fn as_handle_ref(&self) -> Unowned<'_, Handle>

source§

impl<T> AsHandleRef for &T
where T: AsHandleRef,

Implementors§

source§

impl AsHandleRef for zx::bti::Bti

source§

impl AsHandleRef for zx::exception::Exception

source§

impl AsHandleRef for zx::iommu::Iommu

source§

impl AsHandleRef for zx::pager::Pager

source§

impl AsHandleRef for zx::pmt::Pmt

§

impl AsHandleRef for fidl::handle::AsyncChannel

§

impl AsHandleRef for fidl::handle::AsyncSocket

source§

impl AsHandleRef for fidl::handle::fuchsia_handles::Bti

source§

impl AsHandleRef for fidl::handle::fuchsia_handles::Channel

source§

impl AsHandleRef for DebugLog

source§

impl AsHandleRef for Event

source§

impl AsHandleRef for EventPair

source§

impl AsHandleRef for fidl::handle::fuchsia_handles::Exception

source§

impl AsHandleRef for Guest

source§

impl AsHandleRef for Handle

source§

impl AsHandleRef for Interrupt

source§

impl AsHandleRef for fidl::handle::fuchsia_handles::Iommu

source§

impl AsHandleRef for Job

source§

impl AsHandleRef for Msi

source§

impl AsHandleRef for fidl::handle::fuchsia_handles::Pager

source§

impl AsHandleRef for PciDevice

source§

impl AsHandleRef for fidl::handle::fuchsia_handles::Pmt

source§

impl AsHandleRef for Port

source§

impl AsHandleRef for Process

source§

impl AsHandleRef for Profile

source§

impl AsHandleRef for Resource

source§

impl AsHandleRef for fidl::handle::fuchsia_handles::Socket

source§

impl AsHandleRef for Stream

source§

impl AsHandleRef for SuspendToken

source§

impl AsHandleRef for Thread

source§

impl AsHandleRef for Vcpu

source§

impl AsHandleRef for Vmar

source§

impl AsHandleRef for Vmo

source§

impl<'a, T> AsHandleRef for Unowned<'a, T>
where T: HandleBased,

source§

impl<R, W> AsHandleRef for fidl::handle::fuchsia_handles::Fifo<R, W>

source§

impl<Reference, Output> AsHandleRef for Clock<Reference, Output>
where Reference: Timeline, Output: Timeline,

source§

impl<T> AsHandleRef for ClientEnd<T>

source§

impl<T> AsHandleRef for ServerEnd<T>

source§

impl<T> AsHandleRef for Timer<T>
where T: Timeline,