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