pub struct WaitParams {
pub last: u64,
pub id: Option<String>,
pub poll_ms: Option<u64>,
pub timeout_ms: Option<u64>,
}Expand description
events/wait params. Waits for the corpus generation to pass last, or for
id to reach a terminal state when one is given.
Fields§
§last: u64Generation to wait past.
id: Option<String>Wait for this issue to reach a terminal state instead.
poll_ms: Option<u64>Poll interval in milliseconds.
timeout_ms: Option<u64>Give up after this many milliseconds.
Trait Implementations§
Source§impl Clone for WaitParams
impl Clone for WaitParams
Source§fn clone(&self) -> WaitParams
fn clone(&self) -> WaitParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WaitParams
impl Debug for WaitParams
Source§impl Default for WaitParams
impl Default for WaitParams
Source§fn default() -> WaitParams
fn default() -> WaitParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WaitParams
impl<'de> Deserialize<'de> for WaitParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for WaitParams
Source§impl PartialEq for WaitParams
impl PartialEq for WaitParams
Source§impl Serialize for WaitParams
impl Serialize for WaitParams
impl StructuralPartialEq for WaitParams
Auto Trait Implementations§
impl Freeze for WaitParams
impl RefUnwindSafe for WaitParams
impl Send for WaitParams
impl Sync for WaitParams
impl Unpin for WaitParams
impl UnsafeUnpin for WaitParams
impl UnwindSafe for WaitParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.