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