pub struct StopTextTranslationJobResponse {
pub job_id: Option<String>,
pub job_status: Option<String>,
}Fields§
§job_id: Option<String>The job ID of the stopped batch translation job.
job_status: Option<String>The status of the designated job. Upon successful completion, the job's status will be STOPPED.
Trait Implementations§
Source§impl Clone for StopTextTranslationJobResponse
impl Clone for StopTextTranslationJobResponse
Source§fn clone(&self) -> StopTextTranslationJobResponse
fn clone(&self) -> StopTextTranslationJobResponse
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 Default for StopTextTranslationJobResponse
impl Default for StopTextTranslationJobResponse
Source§fn default() -> StopTextTranslationJobResponse
fn default() -> StopTextTranslationJobResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StopTextTranslationJobResponse
impl<'de> Deserialize<'de> for StopTextTranslationJobResponse
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 StopTextTranslationJobResponse
impl PartialEq for StopTextTranslationJobResponse
Source§fn eq(&self, other: &StopTextTranslationJobResponse) -> bool
fn eq(&self, other: &StopTextTranslationJobResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StopTextTranslationJobResponse
Auto Trait Implementations§
impl Freeze for StopTextTranslationJobResponse
impl RefUnwindSafe for StopTextTranslationJobResponse
impl Send for StopTextTranslationJobResponse
impl Sync for StopTextTranslationJobResponse
impl Unpin for StopTextTranslationJobResponse
impl UnwindSafe for StopTextTranslationJobResponse
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