pub struct AllPackageReleasesVars {
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 AllPackageReleasesVars
impl Clone for AllPackageReleasesVars
Source§fn clone(&self) -> AllPackageReleasesVars
fn clone(&self) -> AllPackageReleasesVars
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 AllPackageReleasesVars
impl Debug for AllPackageReleasesVars
Source§impl Default for AllPackageReleasesVars
impl Default for AllPackageReleasesVars
Source§fn default() -> AllPackageReleasesVars
fn default() -> AllPackageReleasesVars
Returns the “default value” for a type. Read more
Source§impl QueryVariables for AllPackageReleasesVars
impl QueryVariables for AllPackageReleasesVars
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 = AllPackageReleasesVarsFields
type Fields = AllPackageReleasesVarsFields
A struct that determines which variables are available when using this
struct.
Auto Trait Implementations§
impl Freeze for AllPackageReleasesVars
impl RefUnwindSafe for AllPackageReleasesVars
impl Send for AllPackageReleasesVars
impl Sync for AllPackageReleasesVars
impl Unpin for AllPackageReleasesVars
impl UnwindSafe for AllPackageReleasesVars
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