pub struct UserAttacksRequest {
pub api_filters_incoming_outgoing: Option<ApiFiltersIncomingOutgoing>,
pub api_limit100: Option<ApiLimit100>,
pub api_sort: Option<ApiSort>,
pub api_to: Option<ApiTo>,
pub api_from: Option<ApiFrom>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_limited: Option<String>,
}Fields§
§api_filters_incoming_outgoing: Option<ApiFiltersIncomingOutgoing>§api_limit100: Option<ApiLimit100>§api_sort: Option<ApiSort>§api_to: Option<ApiTo>§api_from: Option<ApiFrom>§api_timestamp: Option<String>§api_comment: Option<String>§api_key_limited: Option<String>Implementations§
Source§impl UserAttacksRequest
impl UserAttacksRequest
Sourcepub fn builder() -> UserAttacksRequestBuilder
pub fn builder() -> UserAttacksRequestBuilder
Create an instance of UserAttacksRequest using the builder syntax
Trait Implementations§
Source§impl Clone for UserAttacksRequest
impl Clone for UserAttacksRequest
Source§fn clone(&self) -> UserAttacksRequest
fn clone(&self) -> UserAttacksRequest
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 UserAttacksRequest
impl Debug for UserAttacksRequest
Source§impl IntoRequest for UserAttacksRequest
impl IntoRequest for UserAttacksRequest
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 = FactionAttacksResponse
type Response = FactionAttacksResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for UserAttacksRequest
impl RefUnwindSafe for UserAttacksRequest
impl Send for UserAttacksRequest
impl Sync for UserAttacksRequest
impl Unpin for UserAttacksRequest
impl UnsafeUnpin for UserAttacksRequest
impl UnwindSafe for UserAttacksRequest
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