pub struct ProjectsArguments {
pub first: Option<i32>,
pub after: Option<String>,
pub filter: Option<ProjectFilter>,
}Fields§
§first: Option<i32>§after: Option<String>§filter: Option<ProjectFilter>Trait Implementations§
Source§impl Clone for ProjectsArguments
impl Clone for ProjectsArguments
Source§fn clone(&self) -> ProjectsArguments
fn clone(&self) -> ProjectsArguments
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 ProjectsArguments
impl Debug for ProjectsArguments
Source§impl QueryVariables for ProjectsArguments
impl QueryVariables for ProjectsArguments
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 = ProjectsArgumentsFields
type Fields = ProjectsArgumentsFields
A struct that determines which variables are available when using this
struct.
Auto Trait Implementations§
impl Freeze for ProjectsArguments
impl RefUnwindSafe for ProjectsArguments
impl Send for ProjectsArguments
impl Sync for ProjectsArguments
impl Unpin for ProjectsArguments
impl UnsafeUnpin for ProjectsArguments
impl UnwindSafe for ProjectsArguments
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