pub enum MonitorRequest {
Update {
reason: UpdateReason,
status: Status,
responder: MonitorUpdateResponder,
},
}
Expand description
See Status
. This protocol is used to push status from the Controller
to
callers.
Variants§
Update
Sends the current status.
- request
reason
the cause of a status change. - status
status
the reported fuzzing metrics.
Implementations§
Source§impl MonitorRequest
impl MonitorRequest
pub fn into_update( self, ) -> Option<(UpdateReason, Status, MonitorUpdateResponder)>
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 MonitorRequest
impl !RefUnwindSafe for MonitorRequest
impl Send for MonitorRequest
impl Sync for MonitorRequest
impl Unpin for MonitorRequest
impl !UnwindSafe for MonitorRequest
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