pub struct ListWorkteamsRequest {
pub max_results: Option<i64>,
pub name_contains: Option<String>,
pub next_token: Option<String>,
pub sort_by: Option<String>,
pub sort_order: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of work teams to return in each page of the response.
name_contains: Option<String>
A string in the work team's name. This filter returns only work teams whose name contains the specified string.
next_token: Option<String>
If the result of the previous ListWorkteams
request was truncated, the response includes a NextToken
. To retrieve the next set of labeling jobs, use the token in the next request.
sort_by: Option<String>
The field to sort results by. The default is CreationTime
.
sort_order: Option<String>
The sort order for results. The default is Ascending
.
Trait Implementations§
Source§impl Clone for ListWorkteamsRequest
impl Clone for ListWorkteamsRequest
Source§fn clone(&self) -> ListWorkteamsRequest
fn clone(&self) -> ListWorkteamsRequest
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 ListWorkteamsRequest
impl Debug for ListWorkteamsRequest
Source§impl Default for ListWorkteamsRequest
impl Default for ListWorkteamsRequest
Source§fn default() -> ListWorkteamsRequest
fn default() -> ListWorkteamsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListWorkteamsRequest
impl PartialEq for ListWorkteamsRequest
Source§impl Serialize for ListWorkteamsRequest
impl Serialize for ListWorkteamsRequest
impl StructuralPartialEq for ListWorkteamsRequest
Auto Trait Implementations§
impl Freeze for ListWorkteamsRequest
impl RefUnwindSafe for ListWorkteamsRequest
impl Send for ListWorkteamsRequest
impl Sync for ListWorkteamsRequest
impl Unpin for ListWorkteamsRequest
impl UnwindSafe for ListWorkteamsRequest
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