pub struct GetDeployAppVersionsVars {
pub owner: String,
pub name: String,
pub offset: Option<i32>,
pub before: Option<String>,
pub after: Option<String>,
pub first: Option<i32>,
pub last: Option<i32>,
pub sort_by: Option<DeployAppVersionsSortBy>,
}
Fields§
§owner: String
§name: String
§offset: Option<i32>
§before: Option<String>
§after: Option<String>
§first: Option<i32>
§last: Option<i32>
§sort_by: Option<DeployAppVersionsSortBy>
Trait Implementations§
Source§impl Clone for GetDeployAppVersionsVars
impl Clone for GetDeployAppVersionsVars
Source§fn clone(&self) -> GetDeployAppVersionsVars
fn clone(&self) -> GetDeployAppVersionsVars
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 GetDeployAppVersionsVars
impl Debug for GetDeployAppVersionsVars
Source§impl QueryVariables for GetDeployAppVersionsVars
impl QueryVariables for GetDeployAppVersionsVars
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 = GetDeployAppVersionsVarsFields
type Fields = GetDeployAppVersionsVarsFields
A struct that determines which variables are available when using this
struct.
Auto Trait Implementations§
impl Freeze for GetDeployAppVersionsVars
impl RefUnwindSafe for GetDeployAppVersionsVars
impl Send for GetDeployAppVersionsVars
impl Sync for GetDeployAppVersionsVars
impl Unpin for GetDeployAppVersionsVars
impl UnwindSafe for GetDeployAppVersionsVars
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