pub struct LogsQuery {
pub severity: Option<String>,
pub search: Option<String>,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub limit: Option<usize>,
pub offset: Option<usize>,
}Fields§
§severity: Option<String>§search: Option<String>§start_time: Option<i64>§end_time: Option<i64>§limit: Option<usize>§offset: Option<usize>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogsQuery
impl RefUnwindSafe for LogsQuery
impl Send for LogsQuery
impl Sync for LogsQuery
impl Unpin for LogsQuery
impl UnsafeUnpin for LogsQuery
impl UnwindSafe for LogsQuery
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