pub struct TemplateArgs {
pub global_vars: HashMap<String, String>,
pub request_params: SubconverterQuery,
pub local_vars: HashMap<String, String>,
pub node_list: HashMap<String, String>,
}Expand description
Template arguments container
Fields§
§global_vars: HashMap<String, String>Global variables
request_params: SubconverterQueryRequest parameters
local_vars: HashMap<String, String>Local variables
node_list: HashMap<String, String>Node list variables
Trait Implementations§
Source§impl Clone for TemplateArgs
impl Clone for TemplateArgs
Source§fn clone(&self) -> TemplateArgs
fn clone(&self) -> TemplateArgs
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 TemplateArgs
impl Debug for TemplateArgs
Source§impl Default for TemplateArgs
impl Default for TemplateArgs
Source§fn default() -> TemplateArgs
fn default() -> TemplateArgs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TemplateArgs
impl RefUnwindSafe for TemplateArgs
impl Send for TemplateArgs
impl Sync for TemplateArgs
impl Unpin for TemplateArgs
impl UnwindSafe for TemplateArgs
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