#[non_exhaustive]pub enum YaccGrammarWarningKind {
UnusedRule,
UnusedToken,
}
Expand description
The various different possible Yacc parser errors.
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<'__de, __Context> BorrowDecode<'__de, __Context> for YaccGrammarWarningKind
impl<'__de, __Context> BorrowDecode<'__de, __Context> for YaccGrammarWarningKind
Source§fn borrow_decode<__D: BorrowDecoder<'__de, Context = __Context>>(
decoder: &mut __D,
) -> Result<Self, DecodeError>
fn borrow_decode<__D: BorrowDecoder<'__de, Context = __Context>>( decoder: &mut __D, ) -> Result<Self, DecodeError>
Attempt to decode this type with the given BorrowDecode.
Source§impl Clone for YaccGrammarWarningKind
impl Clone for YaccGrammarWarningKind
Source§fn clone(&self) -> YaccGrammarWarningKind
fn clone(&self) -> YaccGrammarWarningKind
Returns a copy of the value. Read more
1.0.0 · 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 YaccGrammarWarningKind
impl Debug for YaccGrammarWarningKind
Source§impl<__Context> Decode<__Context> for YaccGrammarWarningKind
impl<__Context> Decode<__Context> for YaccGrammarWarningKind
Source§impl Display for YaccGrammarWarningKind
impl Display for YaccGrammarWarningKind
Source§impl Encode for YaccGrammarWarningKind
impl Encode for YaccGrammarWarningKind
Source§impl PartialEq for YaccGrammarWarningKind
impl PartialEq for YaccGrammarWarningKind
impl Eq for YaccGrammarWarningKind
impl StructuralPartialEq for YaccGrammarWarningKind
Auto Trait Implementations§
impl Freeze for YaccGrammarWarningKind
impl RefUnwindSafe for YaccGrammarWarningKind
impl Send for YaccGrammarWarningKind
impl Sync for YaccGrammarWarningKind
impl Unpin for YaccGrammarWarningKind
impl UnwindSafe for YaccGrammarWarningKind
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.