pub struct GetEndpointLogsRequest {
pub from: String,
pub to: String,
pub include_details: Option<bool>,
pub limit: Option<i32>,
pub next_at: Option<String>,
}Expand description
Parameters for get_endpoint_logs.
Fields§
§from: StringStart of the query window (timestamp).
to: StringEnd of the query window (timestamp).
include_details: Option<bool>When true, include full request/response payloads in each entry.
limit: Option<i32>Maximum number of log entries returned.
next_at: Option<String>Cursor returned by a previous page; pass to fetch the next page.
Trait Implementations§
Source§impl Clone for GetEndpointLogsRequest
impl Clone for GetEndpointLogsRequest
Source§fn clone(&self) -> GetEndpointLogsRequest
fn clone(&self) -> GetEndpointLogsRequest
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 GetEndpointLogsRequest
impl Debug for GetEndpointLogsRequest
Source§impl Default for GetEndpointLogsRequest
impl Default for GetEndpointLogsRequest
Source§fn default() -> GetEndpointLogsRequest
fn default() -> GetEndpointLogsRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetEndpointLogsRequest
impl RefUnwindSafe for GetEndpointLogsRequest
impl Send for GetEndpointLogsRequest
impl Sync for GetEndpointLogsRequest
impl Unpin for GetEndpointLogsRequest
impl UnsafeUnpin for GetEndpointLogsRequest
impl UnwindSafe for GetEndpointLogsRequest
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