pub struct UserLogRequest {
pub log: Option<Log>,
pub cat: Option<LogCategoryId>,
pub api_limit100_default20: Option<ApiLimit100Default20>,
pub api_to: Option<ApiTo>,
pub api_from: Option<ApiFrom>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_full: Option<String>,
}
Fields§
§log: Option<Log>
§cat: Option<LogCategoryId>
§api_limit100_default20: Option<ApiLimit100Default20>
§api_to: Option<ApiTo>
§api_from: Option<ApiFrom>
§api_timestamp: Option<String>
§api_comment: Option<String>
§api_key_full: Option<String>
Implementations§
Source§impl UserLogRequest
impl UserLogRequest
Sourcepub fn builder() -> UserLogRequestBuilder
pub fn builder() -> UserLogRequestBuilder
Create an instance of UserLogRequest
using the builder syntax
Trait Implementations§
Source§impl Clone for UserLogRequest
impl Clone for UserLogRequest
Source§fn clone(&self) -> UserLogRequest
fn clone(&self) -> UserLogRequest
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 UserLogRequest
impl Debug for UserLogRequest
Source§impl IntoRequest for UserLogRequest
impl IntoRequest for UserLogRequest
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 = UserLogsResponse
type Response = UserLogsResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for UserLogRequest
impl RefUnwindSafe for UserLogRequest
impl Send for UserLogRequest
impl Sync for UserLogRequest
impl Unpin for UserLogRequest
impl UnwindSafe for UserLogRequest
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