pub trait ViewRefExt {
    // Required method
    fn get_koid(&self) -> Result<Koid, Status>;
}
Expand description

Extension trait for [fidl_fuchsia_ui_view::ViewRef].

Required Methods§

source

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

Returns the koid (kernel object ID) for this ViewRef. (This involves a system call.)

Implementations on Foreign Types§

source§

impl ViewRefExt for ViewRef

source§

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

Implementors§