pub enum StoredSnapshotIteratorRequest {
GetNext {
responder: StoredSnapshotIteratorGetNextResponder,
},
}
Expand description
Protocol to retrieve a list of StoredSnapshots.
Variants§
GetNext
Retrieves the next batch of StoredSnapshots elements.
An empty response signals the end of the list.
Fields
§
responder: StoredSnapshotIteratorGetNextResponder
Implementations§
Source§impl StoredSnapshotIteratorRequest
impl StoredSnapshotIteratorRequest
pub fn into_get_next(self) -> Option<StoredSnapshotIteratorGetNextResponder>
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 StoredSnapshotIteratorRequest
impl !RefUnwindSafe for StoredSnapshotIteratorRequest
impl Send for StoredSnapshotIteratorRequest
impl Sync for StoredSnapshotIteratorRequest
impl Unpin for StoredSnapshotIteratorRequest
impl !UnwindSafe for StoredSnapshotIteratorRequest
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