pub enum Filling {
Text(String),
List(Vec<Filling>),
Template(HashMap<String, Filling>),
}
Expand description
Represents a variable in a template hash, can be a string, another template hash or an array of template hash.
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for Filling
impl RefUnwindSafe for Filling
impl Send for Filling
impl Sync for Filling
impl Unpin for Filling
impl UnwindSafe for Filling
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