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