pub enum Syntax {
Unterminated {
offset: usize,
},
EmptyRef,
Nested {
body: String,
},
EmptyEnvName,
EmptySegment {
body: String,
},
BadIndex {
body: String,
},
}Expand description
A malformed reference.
Carries the offending text or offset and nothing else — no key path (the caller knows where it was reading) and no flag names.
Variants§
Unterminated
${ with no } after it.
EmptyRef
${} — a reference to nothing.
Nested
${a${b}}. Finding the end of a reference is find('}'), so a nested
${ has no reading that is not a guess.
EmptyEnvName
${env:} — the namespace with no variable after it. Raised downstream,
where the prefix is recognised, but it is the same class of mistake.
EmptySegment
${a..b} — a dotted path with an empty segment. Also raised downstream,
where the body is parsed as a reference path.
BadIndex
${servers[x]} — a bracket step that is not an array index: empty,
non-numeric, too big, or unclosed. Also raised downstream.
Trait Implementations§
impl Eq for Syntax
Source§impl Error for Syntax
impl Error for Syntax
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl StructuralPartialEq for Syntax
Auto Trait Implementations§
impl Freeze for Syntax
impl RefUnwindSafe for Syntax
impl Send for Syntax
impl Sync for Syntax
impl Unpin for Syntax
impl UnsafeUnpin for Syntax
impl UnwindSafe for Syntax
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.