pub enum TemplerVar {
String(String),
List(Vec<String>),
}Variants§
Trait Implementations§
Source§impl Clone for TemplerVar
impl Clone for TemplerVar
Source§fn clone(&self) -> TemplerVar
fn clone(&self) -> TemplerVar
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 moreAuto Trait Implementations§
impl Freeze for TemplerVar
impl RefUnwindSafe for TemplerVar
impl Send for TemplerVar
impl Sync for TemplerVar
impl Unpin for TemplerVar
impl UnwindSafe for TemplerVar
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