pub enum NameLookupError {
NotFound,
Ambiguous,
}Expand description
Why oid could not resolve a name.
Variants§
NotFound
No builtin function renders as the given name.
Ambiguous
Several builtin functions render as the given name.
Trait Implementations§
Source§impl Clone for NameLookupError
impl Clone for NameLookupError
Source§fn clone(&self) -> NameLookupError
fn clone(&self) -> NameLookupError
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 NameLookupError
Source§impl Debug for NameLookupError
impl Debug for NameLookupError
impl Eq for NameLookupError
Source§impl PartialEq for NameLookupError
impl PartialEq for NameLookupError
impl StructuralPartialEq for NameLookupError
Auto Trait Implementations§
impl Freeze for NameLookupError
impl RefUnwindSafe for NameLookupError
impl Send for NameLookupError
impl Sync for NameLookupError
impl Unpin for NameLookupError
impl UnsafeUnpin for NameLookupError
impl UnwindSafe for NameLookupError
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