pub struct RunsQuery {
pub harness: Option<String>,
pub job: Option<String>,
pub limit: Option<usize>,
pub homes: HarnessHomes,
}Expand description
Filters for a run-history read.
Fields§
§harness: Option<String>Restrict to one harness. Absent means every harness in
RUN_HARNESSES.
job: Option<String>Restrict to one job’s fires.
limit: Option<usize>Cap on rows. Applied per store as the read’s own LIMIT (so a long
history is never fully materialized) and again to the merged listing.
homes: HarnessHomesStorage roots to read.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunsQuery
impl<'de> Deserialize<'de> for RunsQuery
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RunsQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RunsQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RunsQuery
Source§impl Serialize for RunsQuery
impl Serialize for RunsQuery
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RunsQuery
Auto Trait Implementations§
impl Freeze for RunsQuery
impl RefUnwindSafe for RunsQuery
impl Send for RunsQuery
impl Sync for RunsQuery
impl Unpin for RunsQuery
impl UnsafeUnpin for RunsQuery
impl UnwindSafe for RunsQuery
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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§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.