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