pub struct ReadJobResponse {
pub job: Option<Job>,
}
Expand description
The ReadJobResponse
structure.
Fields§
§job: Option<Job>
A section of the response body that provides information about the job.
Trait Implementations§
Source§impl Clone for ReadJobResponse
impl Clone for ReadJobResponse
Source§fn clone(&self) -> ReadJobResponse
fn clone(&self) -> ReadJobResponse
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 ReadJobResponse
impl Debug for ReadJobResponse
Source§impl Default for ReadJobResponse
impl Default for ReadJobResponse
Source§fn default() -> ReadJobResponse
fn default() -> ReadJobResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReadJobResponse
impl<'de> Deserialize<'de> for ReadJobResponse
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 ReadJobResponse
impl PartialEq for ReadJobResponse
impl StructuralPartialEq for ReadJobResponse
Auto Trait Implementations§
impl Freeze for ReadJobResponse
impl RefUnwindSafe for ReadJobResponse
impl Send for ReadJobResponse
impl Sync for ReadJobResponse
impl Unpin for ReadJobResponse
impl UnwindSafe for ReadJobResponse
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