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