pub struct FactionSearchRequest {
pub api_name: Option<String>,
pub api_faction_search_filter: Option<ApiFactionSearchFilter>,
pub api_limit50_default20: Option<ApiLimit50Default20>,
pub api_offset: Option<ApiOffset>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}Fields§
§api_name: Option<String>§api_faction_search_filter: Option<ApiFactionSearchFilter>§api_limit50_default20: Option<ApiLimit50Default20>§api_offset: Option<ApiOffset>§api_timestamp: Option<String>§api_comment: Option<String>§api_key_public: Option<String>Implementations§
Source§impl FactionSearchRequest
impl FactionSearchRequest
Sourcepub fn builder() -> FactionSearchRequestBuilder
pub fn builder() -> FactionSearchRequestBuilder
Create an instance of FactionSearchRequest using the builder syntax
Trait Implementations§
Source§impl Clone for FactionSearchRequest
impl Clone for FactionSearchRequest
Source§fn clone(&self) -> FactionSearchRequest
fn clone(&self) -> FactionSearchRequest
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 FactionSearchRequest
impl Debug for FactionSearchRequest
Source§impl IntoRequest for FactionSearchRequest
impl IntoRequest for FactionSearchRequest
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 = FactionSearchResponse
type Response = FactionSearchResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for FactionSearchRequest
impl RefUnwindSafe for FactionSearchRequest
impl Send for FactionSearchRequest
impl Sync for FactionSearchRequest
impl Unpin for FactionSearchRequest
impl UnsafeUnpin for FactionSearchRequest
impl UnwindSafe for FactionSearchRequest
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