pub enum ConfigDelta {
All,
Templates(BTreeSet<String>),
None,
}Variants§
All
Recompile every tracked file.
Templates(BTreeSet<String>)
Only template strings of these shortcodes differ; recompile files that reference any of them.
None
No effective change.
Trait Implementations§
Source§impl Debug for ConfigDelta
impl Debug for ConfigDelta
Source§impl PartialEq for ConfigDelta
impl PartialEq for ConfigDelta
Source§fn eq(&self, other: &ConfigDelta) -> bool
fn eq(&self, other: &ConfigDelta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ConfigDelta
impl StructuralPartialEq for ConfigDelta
Auto Trait Implementations§
impl Freeze for ConfigDelta
impl RefUnwindSafe for ConfigDelta
impl Send for ConfigDelta
impl Sync for ConfigDelta
impl Unpin for ConfigDelta
impl UnsafeUnpin for ConfigDelta
impl UnwindSafe for ConfigDelta
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.