pub struct ReadOptions {
pub name: Option<String>,
pub since: Option<String>,
pub user: Option<String>,
pub trace: Option<String>,
pub level: Option<String>,
pub search: Option<String>,
pub project: Option<String>,
pub release: Option<String>,
pub environment: Option<String>,
pub status: Option<String>,
pub limit: Option<String>,
}Expand description
Filters for historical read commands.
Fields§
§name: Option<String>Optional action name filter.
since: Option<String>Optional relative or absolute lower time bound.
user: Option<String>Optional user or actor filter.
trace: Option<String>Optional trace ID filter.
level: Option<String>Optional log level filter.
search: Option<String>Optional log message substring search.
project: Option<String>Optional project filter.
release: Option<String>Optional release filter.
environment: Option<String>Optional environment filter.
status: Option<String>Optional issue status filter.
limit: Option<String>Optional row limit.
Trait Implementations§
Source§impl Clone for ReadOptions
impl Clone for ReadOptions
Source§fn clone(&self) -> ReadOptions
fn clone(&self) -> ReadOptions
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 ReadOptions
impl Debug for ReadOptions
Source§impl Default for ReadOptions
impl Default for ReadOptions
Source§fn default() -> ReadOptions
fn default() -> ReadOptions
Returns the “default value” for a type. Read more
impl Eq for ReadOptions
Source§impl PartialEq for ReadOptions
impl PartialEq for ReadOptions
Source§fn eq(&self, other: &ReadOptions) -> bool
fn eq(&self, other: &ReadOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReadOptions
Auto Trait Implementations§
impl Freeze for ReadOptions
impl RefUnwindSafe for ReadOptions
impl Send for ReadOptions
impl Sync for ReadOptions
impl Unpin for ReadOptions
impl UnsafeUnpin for ReadOptions
impl UnwindSafe for ReadOptions
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,
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.