pub struct StopDominantLanguageDetectionJobResponse {
pub job_id: Option<String>,
pub job_status: Option<String>,
}Fields§
§job_id: Option<String>The identifier of the dominant language detection job to stop.
job_status: Option<String>Either STOP_REQUESTED if the job is currently running, or STOPPED if the job was previously stopped with the StopDominantLanguageDetectionJob operation.
Trait Implementations§
Source§impl Clone for StopDominantLanguageDetectionJobResponse
impl Clone for StopDominantLanguageDetectionJobResponse
Source§fn clone(&self) -> StopDominantLanguageDetectionJobResponse
fn clone(&self) -> StopDominantLanguageDetectionJobResponse
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 StopDominantLanguageDetectionJobResponse
impl Default for StopDominantLanguageDetectionJobResponse
Source§fn default() -> StopDominantLanguageDetectionJobResponse
fn default() -> StopDominantLanguageDetectionJobResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StopDominantLanguageDetectionJobResponse
impl<'de> Deserialize<'de> for StopDominantLanguageDetectionJobResponse
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 StopDominantLanguageDetectionJobResponse
impl PartialEq for StopDominantLanguageDetectionJobResponse
Source§fn eq(&self, other: &StopDominantLanguageDetectionJobResponse) -> bool
fn eq(&self, other: &StopDominantLanguageDetectionJobResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StopDominantLanguageDetectionJobResponse
Auto Trait Implementations§
impl Freeze for StopDominantLanguageDetectionJobResponse
impl RefUnwindSafe for StopDominantLanguageDetectionJobResponse
impl Send for StopDominantLanguageDetectionJobResponse
impl Sync for StopDominantLanguageDetectionJobResponse
impl Unpin for StopDominantLanguageDetectionJobResponse
impl UnwindSafe for StopDominantLanguageDetectionJobResponse
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