pub enum MinidumpIteratorRequest {
GetNext {
responder: MinidumpIteratorGetNextResponder,
},
}
Expand description
An iterator that collects and returns a minidump for a set of processes. An empty VMO will be returned when there are no more processes.
Variants§
GetNext
Fields
§
responder: MinidumpIteratorGetNextResponder
Implementations§
Source§impl MinidumpIteratorRequest
impl MinidumpIteratorRequest
pub fn into_get_next(self) -> Option<MinidumpIteratorGetNextResponder>
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 MinidumpIteratorRequest
impl !RefUnwindSafe for MinidumpIteratorRequest
impl Send for MinidumpIteratorRequest
impl Sync for MinidumpIteratorRequest
impl Unpin for MinidumpIteratorRequest
impl !UnwindSafe for MinidumpIteratorRequest
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