#[non_exhaustive]pub enum UnsupportedSyntaxKind {
LegacyControllerCan,
PatternSynonym,
}Expand description
Unsupported syntax families surfaced by the parser.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for UnsupportedSyntaxKind
impl Clone for UnsupportedSyntaxKind
Source§fn clone(&self) -> UnsupportedSyntaxKind
fn clone(&self) -> UnsupportedSyntaxKind
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 UnsupportedSyntaxKind
Source§impl Debug for UnsupportedSyntaxKind
impl Debug for UnsupportedSyntaxKind
impl Eq for UnsupportedSyntaxKind
Source§impl PartialEq for UnsupportedSyntaxKind
impl PartialEq for UnsupportedSyntaxKind
Source§fn eq(&self, other: &UnsupportedSyntaxKind) -> bool
fn eq(&self, other: &UnsupportedSyntaxKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UnsupportedSyntaxKind
Auto Trait Implementations§
impl Freeze for UnsupportedSyntaxKind
impl RefUnwindSafe for UnsupportedSyntaxKind
impl Send for UnsupportedSyntaxKind
impl Sync for UnsupportedSyntaxKind
impl Unpin for UnsupportedSyntaxKind
impl UnsafeUnpin for UnsupportedSyntaxKind
impl UnwindSafe for UnsupportedSyntaxKind
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