pub struct AllPackageVersionsVars {
pub offset: Option<i32>,
pub before: Option<String>,
pub after: Option<String>,
pub first: Option<i32>,
pub last: Option<i32>,
pub created_after: Option<DateTime>,
pub updated_after: Option<DateTime>,
pub sort_by: Option<PackageVersionSortBy>,
}
Fields§
§offset: Option<i32>
§before: Option<String>
§after: Option<String>
§first: Option<i32>
§last: Option<i32>
§created_after: Option<DateTime>
§updated_after: Option<DateTime>
§sort_by: Option<PackageVersionSortBy>
Trait Implementations§
Source§impl Clone for AllPackageVersionsVars
impl Clone for AllPackageVersionsVars
Source§fn clone(&self) -> AllPackageVersionsVars
fn clone(&self) -> AllPackageVersionsVars
Returns a copy 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 AllPackageVersionsVars
impl Debug for AllPackageVersionsVars
Source§impl Default for AllPackageVersionsVars
impl Default for AllPackageVersionsVars
Source§fn default() -> AllPackageVersionsVars
fn default() -> AllPackageVersionsVars
Returns the “default value” for a type. Read more
Source§impl QueryVariables for AllPackageVersionsVars
impl QueryVariables for AllPackageVersionsVars
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 = AllPackageVersionsVarsFields
type Fields = AllPackageVersionsVarsFields
A struct that determines which variables are available when using this
struct.
Auto Trait Implementations§
impl Freeze for AllPackageVersionsVars
impl RefUnwindSafe for AllPackageVersionsVars
impl Send for AllPackageVersionsVars
impl Sync for AllPackageVersionsVars
impl Unpin for AllPackageVersionsVars
impl UnwindSafe for AllPackageVersionsVars
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