pub enum SymbolRefBindingError {
TargetNotDeclared {
node: NodeId,
symbol_id: SymbolId,
},
}Variants§
Trait Implementations§
Source§impl Clone for SymbolRefBindingError
impl Clone for SymbolRefBindingError
Source§fn clone(&self) -> SymbolRefBindingError
fn clone(&self) -> SymbolRefBindingError
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 SymbolRefBindingError
impl Debug for SymbolRefBindingError
Source§impl Display for SymbolRefBindingError
impl Display for SymbolRefBindingError
impl Eq for SymbolRefBindingError
Source§impl Error for SymbolRefBindingError
impl Error for SymbolRefBindingError
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()
Source§impl PartialEq for SymbolRefBindingError
impl PartialEq for SymbolRefBindingError
Source§fn eq(&self, other: &SymbolRefBindingError) -> bool
fn eq(&self, other: &SymbolRefBindingError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SymbolRefBindingError
Auto Trait Implementations§
impl Freeze for SymbolRefBindingError
impl RefUnwindSafe for SymbolRefBindingError
impl Send for SymbolRefBindingError
impl Sync for SymbolRefBindingError
impl Unpin for SymbolRefBindingError
impl UnsafeUnpin for SymbolRefBindingError
impl UnwindSafe for SymbolRefBindingError
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