pub enum SkipKind {
UnknownObject,
UnknownProperty,
MalformedValue,
UnresolvedAlias,
StaleState,
}Expand description
Why a parser skipped something.
Variants§
UnknownObject
An object the AST does not model and the ignore list does not cover.
UnknownProperty
A property the AST does not model and the ignore list does not cover.
MalformedValue
A modeled property whose value could not be parsed.
UnresolvedAlias
A query alias that could not be resolved (PBIR SourceRef.Source).
StaleState
Saved or indexed state that refers to objects which no longer exist — e.g. a bookmark section whose page was deleted from the report.
Trait Implementations§
impl Copy for SkipKind
impl Eq for SkipKind
impl StructuralPartialEq for SkipKind
Auto Trait Implementations§
impl Freeze for SkipKind
impl RefUnwindSafe for SkipKind
impl Send for SkipKind
impl Sync for SkipKind
impl Unpin for SkipKind
impl UnsafeUnpin for SkipKind
impl UnwindSafe for SkipKind
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.