pub struct DominantLanguageDetectionJobFilter {
pub job_name: Option<String>,
pub job_status: Option<String>,
pub submit_time_after: Option<f64>,
pub submit_time_before: Option<f64>,
}Expand description
Provides information for filtering a list of dominant language detection jobs. For more information, see the operation.
Fields§
§job_name: Option<String>Filters on the name of the job.
job_status: Option<String>Filters the list of jobs based on job status. Returns only jobs with the specified status.
submit_time_after: Option<f64>Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.
submit_time_before: Option<f64>Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.
Trait Implementations§
Source§impl Clone for DominantLanguageDetectionJobFilter
impl Clone for DominantLanguageDetectionJobFilter
Source§fn clone(&self) -> DominantLanguageDetectionJobFilter
fn clone(&self) -> DominantLanguageDetectionJobFilter
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 DominantLanguageDetectionJobFilter
impl Default for DominantLanguageDetectionJobFilter
Source§fn default() -> DominantLanguageDetectionJobFilter
fn default() -> DominantLanguageDetectionJobFilter
Returns the “default value” for a type. Read more
Source§impl PartialEq for DominantLanguageDetectionJobFilter
impl PartialEq for DominantLanguageDetectionJobFilter
Source§fn eq(&self, other: &DominantLanguageDetectionJobFilter) -> bool
fn eq(&self, other: &DominantLanguageDetectionJobFilter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DominantLanguageDetectionJobFilter
Auto Trait Implementations§
impl Freeze for DominantLanguageDetectionJobFilter
impl RefUnwindSafe for DominantLanguageDetectionJobFilter
impl Send for DominantLanguageDetectionJobFilter
impl Sync for DominantLanguageDetectionJobFilter
impl Unpin for DominantLanguageDetectionJobFilter
impl UnwindSafe for DominantLanguageDetectionJobFilter
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