pub enum SyntaxGraphError {
EmptyAstGraph,
MissingRootNode,
MissingAstNode,
UnexpectedAstShape,
UnsupportedLanguage,
}Variants§
Trait Implementations§
Source§impl Clone for SyntaxGraphError
impl Clone for SyntaxGraphError
Source§fn clone(&self) -> SyntaxGraphError
fn clone(&self) -> SyntaxGraphError
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 SyntaxGraphError
Source§impl Debug for SyntaxGraphError
impl Debug for SyntaxGraphError
Source§impl Display for SyntaxGraphError
impl Display for SyntaxGraphError
impl Eq for SyntaxGraphError
Source§impl PartialEq for SyntaxGraphError
impl PartialEq for SyntaxGraphError
impl StructuralPartialEq for SyntaxGraphError
Auto Trait Implementations§
impl Freeze for SyntaxGraphError
impl RefUnwindSafe for SyntaxGraphError
impl Send for SyntaxGraphError
impl Sync for SyntaxGraphError
impl Unpin for SyntaxGraphError
impl UnsafeUnpin for SyntaxGraphError
impl UnwindSafe for SyntaxGraphError
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