pub struct GetServiceJobsResponse {
pub payload: Option<Box<JobListing>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetServiceJobsResponse : Response schema for the getServiceJobs operation.
Fields§
§payload: Option<Box<JobListing>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl GetServiceJobsResponse
impl GetServiceJobsResponse
Sourcepub fn new() -> GetServiceJobsResponse
pub fn new() -> GetServiceJobsResponse
Response schema for the getServiceJobs operation.
Trait Implementations§
Source§impl Clone for GetServiceJobsResponse
impl Clone for GetServiceJobsResponse
Source§fn clone(&self) -> GetServiceJobsResponse
fn clone(&self) -> GetServiceJobsResponse
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 GetServiceJobsResponse
impl Debug for GetServiceJobsResponse
Source§impl Default for GetServiceJobsResponse
impl Default for GetServiceJobsResponse
Source§fn default() -> GetServiceJobsResponse
fn default() -> GetServiceJobsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetServiceJobsResponse
impl<'de> Deserialize<'de> for GetServiceJobsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetServiceJobsResponse
impl PartialEq for GetServiceJobsResponse
Source§impl Serialize for GetServiceJobsResponse
impl Serialize for GetServiceJobsResponse
impl StructuralPartialEq for GetServiceJobsResponse
Auto Trait Implementations§
impl Freeze for GetServiceJobsResponse
impl RefUnwindSafe for GetServiceJobsResponse
impl Send for GetServiceJobsResponse
impl Sync for GetServiceJobsResponse
impl Unpin for GetServiceJobsResponse
impl UnwindSafe for GetServiceJobsResponse
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