pub struct ListSubscribedWorkteamsRequest {
pub max_results: Option<i64>,
pub name_contains: Option<String>,
pub next_token: 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 name. This filter returns only work teams whose name contains the specified string.
next_token: Option<String>
If the result of the previous ListSubscribedWorkteams
request was truncated, the response includes a NextToken
. To retrieve the next set of labeling jobs, use the token in the next request.
Trait Implementations§
Source§impl Clone for ListSubscribedWorkteamsRequest
impl Clone for ListSubscribedWorkteamsRequest
Source§fn clone(&self) -> ListSubscribedWorkteamsRequest
fn clone(&self) -> ListSubscribedWorkteamsRequest
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 ListSubscribedWorkteamsRequest
impl Default for ListSubscribedWorkteamsRequest
Source§fn default() -> ListSubscribedWorkteamsRequest
fn default() -> ListSubscribedWorkteamsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListSubscribedWorkteamsRequest
impl PartialEq for ListSubscribedWorkteamsRequest
Source§fn eq(&self, other: &ListSubscribedWorkteamsRequest) -> bool
fn eq(&self, other: &ListSubscribedWorkteamsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListSubscribedWorkteamsRequest
Auto Trait Implementations§
impl Freeze for ListSubscribedWorkteamsRequest
impl RefUnwindSafe for ListSubscribedWorkteamsRequest
impl Send for ListSubscribedWorkteamsRequest
impl Sync for ListSubscribedWorkteamsRequest
impl Unpin for ListSubscribedWorkteamsRequest
impl UnwindSafe for ListSubscribedWorkteamsRequest
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