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