pub enum UnresolvedVariablePolicy {
Preserve,
Placeholder,
Error,
}Expand description
Policy for variables that cannot be resolved during value expansion.
Variants§
Preserve
Keep the variable name as ordinary text.
Placeholder
Render unresolved variables as {undefined:name}.
Error
Return an error for the first unresolved variable.
Trait Implementations§
Source§impl Clone for UnresolvedVariablePolicy
impl Clone for UnresolvedVariablePolicy
Source§fn clone(&self) -> UnresolvedVariablePolicy
fn clone(&self) -> UnresolvedVariablePolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UnresolvedVariablePolicy
impl Debug for UnresolvedVariablePolicy
Source§impl PartialEq for UnresolvedVariablePolicy
impl PartialEq for UnresolvedVariablePolicy
Source§fn eq(&self, other: &UnresolvedVariablePolicy) -> bool
fn eq(&self, other: &UnresolvedVariablePolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for UnresolvedVariablePolicy
impl Eq for UnresolvedVariablePolicy
impl StructuralPartialEq for UnresolvedVariablePolicy
Auto Trait Implementations§
impl Freeze for UnresolvedVariablePolicy
impl RefUnwindSafe for UnresolvedVariablePolicy
impl Send for UnresolvedVariablePolicy
impl Sync for UnresolvedVariablePolicy
impl Unpin for UnresolvedVariablePolicy
impl UnsafeUnpin for UnresolvedVariablePolicy
impl UnwindSafe for UnresolvedVariablePolicy
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more