pub struct TornRequest {
pub selections: Option<Selections>,
pub id: Option<Id>,
pub api_strip_tags: Option<bool>,
pub api_limit: Option<ApiLimit>,
pub api_to: Option<ApiTo>,
pub api_from: Option<ApiFrom>,
pub api_sort: Option<ApiSort>,
pub cat: Option<Cat>,
pub api_offset_no_default: Option<ApiOffsetNoDefault>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}
Fields§
§selections: Option<Selections>
§id: Option<Id>
§api_limit: Option<ApiLimit>
§api_to: Option<ApiTo>
§api_from: Option<ApiFrom>
§api_sort: Option<ApiSort>
§cat: Option<Cat>
§api_offset_no_default: Option<ApiOffsetNoDefault>
§api_timestamp: Option<String>
§api_comment: Option<String>
§api_key_public: Option<String>
Implementations§
Source§impl TornRequest
impl TornRequest
Sourcepub fn builder() -> TornRequestBuilder
pub fn builder() -> TornRequestBuilder
Create an instance of TornRequest
using the builder syntax
Trait Implementations§
Source§impl Clone for TornRequest
impl Clone for TornRequest
Source§fn clone(&self) -> TornRequest
fn clone(&self) -> TornRequest
Returns a copy 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 TornRequest
impl Debug for TornRequest
Source§impl IntoRequest for TornRequest
impl IntoRequest for TornRequest
type Discriminant = ()
type Response = Response
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for TornRequest
impl RefUnwindSafe for TornRequest
impl Send for TornRequest
impl Sync for TornRequest
impl Unpin for TornRequest
impl UnwindSafe for TornRequest
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