pub struct LogsQuery {
pub limit: Option<u32>,
pub offset: Option<u32>,
pub level: Option<String>,
pub component: Option<String>,
pub node_uid: Option<u32>,
pub bdb_uid: Option<u32>,
}
Expand description
Logs query parameters
Fields§
§limit: Option<u32>
§offset: Option<u32>
§level: Option<String>
§component: Option<String>
§node_uid: Option<u32>
§bdb_uid: Option<u32>
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 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