pub struct UserEventsRequest {
pub api_strip_tags_false: Option<bool>,
pub api_limit100_default20: Option<ApiLimit100Default20>,
pub api_from: Option<ApiFrom>,
pub api_to: Option<ApiTo>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_limited: Option<String>,
}Fields§
§api_limit100_default20: Option<ApiLimit100Default20>§api_from: Option<ApiFrom>§api_to: Option<ApiTo>§api_timestamp: Option<String>§api_comment: Option<String>§api_key_limited: Option<String>Implementations§
Source§impl UserEventsRequest
impl UserEventsRequest
Sourcepub fn builder() -> UserEventsRequestBuilder
pub fn builder() -> UserEventsRequestBuilder
Create an instance of UserEventsRequest using the builder syntax
Trait Implementations§
Source§impl Clone for UserEventsRequest
impl Clone for UserEventsRequest
Source§fn clone(&self) -> UserEventsRequest
fn clone(&self) -> UserEventsRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UserEventsRequest
impl Debug for UserEventsRequest
Source§impl IntoRequest for UserEventsRequest
impl IntoRequest for UserEventsRequest
Source§type Discriminant = ()
type Discriminant = ()
If used in bulk request, the discriminant is used to distinguish the responses. For
endpoints which have no path parameters this will be
().Source§type Response = UserEventsResponse
type Response = UserEventsResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for UserEventsRequest
impl RefUnwindSafe for UserEventsRequest
impl Send for UserEventsRequest
impl Sync for UserEventsRequest
impl Unpin for UserEventsRequest
impl UnsafeUnpin for UserEventsRequest
impl UnwindSafe for UserEventsRequest
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