pub struct GetLogRecordsParams {
pub service_id: String,
pub start: String,
pub end: String,
pub limit: Option<f32>,
pub next_cursor: Option<String>,
pub filter: Option<String>,
}
Expand description
struct for passing parameters to the method get_log_records
Fields§
§service_id: String
§start: String
§end: String
§limit: Option<f32>
§next_cursor: Option<String>
§filter: Option<String>
Trait Implementations§
Source§impl Clone for GetLogRecordsParams
impl Clone for GetLogRecordsParams
Source§fn clone(&self) -> GetLogRecordsParams
fn clone(&self) -> GetLogRecordsParams
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 GetLogRecordsParams
impl Debug for GetLogRecordsParams
Source§impl Default for GetLogRecordsParams
impl Default for GetLogRecordsParams
Source§fn default() -> GetLogRecordsParams
fn default() -> GetLogRecordsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetLogRecordsParams
impl RefUnwindSafe for GetLogRecordsParams
impl Send for GetLogRecordsParams
impl Sync for GetLogRecordsParams
impl Unpin for GetLogRecordsParams
impl UnwindSafe for GetLogRecordsParams
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