pub enum ViewRequest {
OpenEntryIterator {
it: ServerEnd<EntryIteratorMarker>,
options: EntryIteratorOptions,
control_handle: ViewControlHandle,
},
}
Expand description
Inspect the neighbor table.
Variants§
OpenEntryIterator
Open a connection to an [EntryIterator
] for listing existing entries
and optionally watching for state changes.
- request
it
grants access to the [EntryIterator
]. - request
options
specifies the behavior of the [EntryIterator
].
Fields
§
it: ServerEnd<EntryIteratorMarker>
§
options: EntryIteratorOptions
§
control_handle: ViewControlHandle
Implementations§
Source§impl ViewRequest
impl ViewRequest
pub fn into_open_entry_iterator( self, ) -> Option<(ServerEnd<EntryIteratorMarker>, EntryIteratorOptions, ViewControlHandle)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ViewRequest
impl !RefUnwindSafe for ViewRequest
impl Send for ViewRequest
impl Sync for ViewRequest
impl Unpin for ViewRequest
impl !UnwindSafe for ViewRequest
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