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