pub struct ResourceLogLastRowsRequest {
pub minref: Option<u32>,
pub days: Option<u32>,
pub maxrecords: Option<u32>,
pub field: Option<List<u32>>,
pub log_code: Option<List<String>>,
}Fields§
§minref: Option<u32>Only return log entries with a ref greater than this value.
days: Option<u32>Only return log entries from the last N days.
maxrecords: Option<u32>Maximum number of log entries to return.
field: Option<List<u32>>Comma-separated list of field IDs to limit results to.
log_code: Option<List<String>>Comma-separated list of log codes to limit results to (e.g. "FD" for field data changes).
Implementations§
Trait Implementations§
Source§impl Clone for ResourceLogLastRowsRequest
impl Clone for ResourceLogLastRowsRequest
Source§fn clone(&self) -> ResourceLogLastRowsRequest
fn clone(&self) -> ResourceLogLastRowsRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 ResourceLogLastRowsRequest
impl Debug for ResourceLogLastRowsRequest
Source§impl Default for ResourceLogLastRowsRequest
impl Default for ResourceLogLastRowsRequest
Source§fn default() -> ResourceLogLastRowsRequest
fn default() -> ResourceLogLastRowsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ResourceLogLastRowsRequest
Auto Trait Implementations§
impl Freeze for ResourceLogLastRowsRequest
impl RefUnwindSafe for ResourceLogLastRowsRequest
impl Send for ResourceLogLastRowsRequest
impl Sync for ResourceLogLastRowsRequest
impl Unpin for ResourceLogLastRowsRequest
impl UnsafeUnpin for ResourceLogLastRowsRequest
impl UnwindSafe for ResourceLogLastRowsRequest
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