pub struct QueryRequest {
pub actor: String,
pub symbol: String,
pub signal_kind: String,
pub thread: String,
pub verbs: Vec<String>,
pub since_secs: i64,
pub until_secs: i64,
pub limit: u32,
pub include_checkpoints: bool,
}Expand description
Query filters for the operation log facade.
Fields§
§actor: String§symbol: String§signal_kind: String§thread: String§verbs: Vec<String>§since_secs: i64§until_secs: i64§limit: u32§include_checkpoints: boolTrait Implementations§
Source§impl Clone for QueryRequest
impl Clone for QueryRequest
Source§fn clone(&self) -> QueryRequest
fn clone(&self) -> QueryRequest
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 QueryRequest
impl Debug for QueryRequest
Source§impl Default for QueryRequest
impl Default for QueryRequest
Source§fn default() -> QueryRequest
fn default() -> QueryRequest
Returns the “default value” for a type. Read more
impl Eq for QueryRequest
Source§impl PartialEq for QueryRequest
impl PartialEq for QueryRequest
Source§fn eq(&self, other: &QueryRequest) -> bool
fn eq(&self, other: &QueryRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryRequest
Auto Trait Implementations§
impl Freeze for QueryRequest
impl RefUnwindSafe for QueryRequest
impl Send for QueryRequest
impl Sync for QueryRequest
impl Unpin for QueryRequest
impl UnsafeUnpin for QueryRequest
impl UnwindSafe for QueryRequest
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