pub struct FactionNewsRequest {
pub api_strip_tags_false: Option<bool>,
pub api_limit100: Option<ApiLimit100>,
pub api_sort_desc: Option<ApiSortDesc>,
pub api_to: Option<ApiTo>,
pub api_from: Option<ApiFrom>,
pub cat: FactionNewsCategory,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_minimal: Option<String>,
}Fields§
§api_limit100: Option<ApiLimit100>§api_sort_desc: Option<ApiSortDesc>§api_to: Option<ApiTo>§api_from: Option<ApiFrom>§cat: FactionNewsCategory§api_timestamp: Option<String>§api_comment: Option<String>§api_key_minimal: Option<String>Implementations§
Source§impl FactionNewsRequest
impl FactionNewsRequest
Sourcepub fn builder() -> FactionNewsRequestBuilder
pub fn builder() -> FactionNewsRequestBuilder
Create an instance of FactionNewsRequest using the builder syntax
Trait Implementations§
Source§impl Clone for FactionNewsRequest
impl Clone for FactionNewsRequest
Source§fn clone(&self) -> FactionNewsRequest
fn clone(&self) -> FactionNewsRequest
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 FactionNewsRequest
impl Debug for FactionNewsRequest
Source§impl IntoRequest for FactionNewsRequest
impl IntoRequest for FactionNewsRequest
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 = FactionNewsResponse
type Response = FactionNewsResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for FactionNewsRequest
impl RefUnwindSafe for FactionNewsRequest
impl Send for FactionNewsRequest
impl Sync for FactionNewsRequest
impl Unpin for FactionNewsRequest
impl UnsafeUnpin for FactionNewsRequest
impl UnwindSafe for FactionNewsRequest
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