pub enum Filter {
None,
Raw,
Len,
Set,
Unset,
Index,
}Expand description
The filter of the variable
Values
None- None filter.Raw- Do not escape the output.Len- Use function len().Set- Values is set.Unset- Values is unset.Index- Index of loop.
Variants§
None
None filter
Raw
Do not escape the output
Len
Use function len()
Set
Values is set
Unset
Values is unset
Index
Index of loop
Trait Implementations§
source§impl PartialEq<Filter> for Filter
impl PartialEq<Filter> for Filter
impl StructuralPartialEq for Filter
Auto Trait Implementations§
impl RefUnwindSafe for Filter
impl Send for Filter
impl Sync for Filter
impl Unpin for Filter
impl UnwindSafe for Filter
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