pub enum FieldEvaluationReason {
UnknownField,
UnresolvedBookmark,
UnsupportedSwitch,
NoComputedResult,
}Expand description
Reason a field’s computed value is not available.
Variants§
UnknownField
rwml does not know this field instruction class yet.
UnresolvedBookmark
The field points at a bookmark/scope rwml could not resolve.
UnsupportedSwitch
The instruction contains a switch whose value can change the result.
NoComputedResult
The instruction is supported, but the document contains no computable value.
Trait Implementations§
Source§impl Clone for FieldEvaluationReason
impl Clone for FieldEvaluationReason
Source§fn clone(&self) -> FieldEvaluationReason
fn clone(&self) -> FieldEvaluationReason
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 moreimpl Copy for FieldEvaluationReason
Source§impl Debug for FieldEvaluationReason
impl Debug for FieldEvaluationReason
impl Eq for FieldEvaluationReason
Source§impl PartialEq for FieldEvaluationReason
impl PartialEq for FieldEvaluationReason
Source§fn eq(&self, other: &FieldEvaluationReason) -> bool
fn eq(&self, other: &FieldEvaluationReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FieldEvaluationReason
Auto Trait Implementations§
impl Freeze for FieldEvaluationReason
impl RefUnwindSafe for FieldEvaluationReason
impl Send for FieldEvaluationReason
impl Sync for FieldEvaluationReason
impl Unpin for FieldEvaluationReason
impl UnsafeUnpin for FieldEvaluationReason
impl UnwindSafe for FieldEvaluationReason
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<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.