Struct Status
pub struct Status {
pub running: Option<bool>,
pub runs: Option<u32>,
pub elapsed: Option<i64>,
pub covered_pcs: Option<u64>,
pub covered_features: Option<u64>,
pub corpus_num_inputs: Option<u64>,
pub corpus_total_size: Option<u64>,
pub process_stats: Option<Vec<ProcessStats>>,
/* private fields */
}
Expand description
See Controller.GetStatus
.
Fields§
§running: Option<bool>
True if the fuzzer is working on a commands, e.g. it is fuzzing.
runs: Option<u32>
Number of runs performed so far.
elapsed: Option<i64>
Time spent so far.
covered_pcs: Option<u64>
Number of program edges covered so far.
covered_features: Option<u64>
Number of opaque features encountered so far.
corpus_num_inputs: Option<u64>
Number of inputs in the “live” corpus.
corpus_total_size: Option<u64>
Total size of the inputs in the “live” corpus.
process_stats: Option<Vec<ProcessStats>>
Information about the instrumented processes attached to the engine.
Trait Implementations§
§impl<D> Decode<Status, D> for Statuswhere
D: ResourceDialect,
impl<D> Decode<Status, D> for Statuswhere
D: ResourceDialect,
§impl<D> Encode<Status, D> for &Statuswhere
D: ResourceDialect,
impl<D> Encode<Status, D> for &Statuswhere
D: ResourceDialect,
§impl TypeMarker for Status
impl TypeMarker for Status
§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.Source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl ValueTypeMarker for Status
impl ValueTypeMarker for Status
§type Borrowed<'a> = &'a Status
type Borrowed<'a> = &'a Status
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<Status as TypeMarker>::Owned,
) -> <Status as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<Status as TypeMarker>::Owned, ) -> <Status as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Persistable for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
Blanket Implementations§
Source§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
Source§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
Source§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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