pub struct TeamsArguments {
pub first: Option<i32>,
pub after: Option<String>,
pub filter: Option<TeamFilter>,
}Fields§
§first: Option<i32>§after: Option<String>§filter: Option<TeamFilter>Trait Implementations§
Source§impl Clone for TeamsArguments
impl Clone for TeamsArguments
Source§fn clone(&self) -> TeamsArguments
fn clone(&self) -> TeamsArguments
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 TeamsArguments
impl Debug for TeamsArguments
Source§impl QueryVariables for TeamsArguments
impl QueryVariables for TeamsArguments
Source§const VARIABLES: &'static [(&'static str, VariableType)]
const VARIABLES: &'static [(&'static str, VariableType)]
An associated constant that contains the variable names & their types. Read more
Source§type Fields = TeamsArgumentsFields
type Fields = TeamsArgumentsFields
A struct that determines which variables are available when using this
struct.
Auto Trait Implementations§
impl Freeze for TeamsArguments
impl RefUnwindSafe for TeamsArguments
impl Send for TeamsArguments
impl Sync for TeamsArguments
impl Unpin for TeamsArguments
impl UnsafeUnpin for TeamsArguments
impl UnwindSafe for TeamsArguments
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