pub enum ActionIteratorRequest {
GetNext {
responder: ActionIteratorGetNextResponder,
},
}
Expand description
Iterator for listing available actions.
Variants§
GetNext
Returns the next batch of actions. When all actions have been read, an empty vector will be returned.
Fields
§
responder: ActionIteratorGetNextResponder
Implementations§
Source§impl ActionIteratorRequest
impl ActionIteratorRequest
pub fn into_get_next(self) -> Option<ActionIteratorGetNextResponder>
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 ActionIteratorRequest
impl !RefUnwindSafe for ActionIteratorRequest
impl Send for ActionIteratorRequest
impl Sync for ActionIteratorRequest
impl Unpin for ActionIteratorRequest
impl !UnwindSafe for ActionIteratorRequest
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