pub enum TablePathError {
IllegalSegment(String),
}Expand description
Why a TablePath operation failed.
Variants§
IllegalSegment(String)
The given segment did not satisfy is_legal_table_segment.
Trait Implementations§
Source§impl Clone for TablePathError
impl Clone for TablePathError
Source§fn clone(&self) -> TablePathError
fn clone(&self) -> TablePathError
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 moreSource§impl Debug for TablePathError
impl Debug for TablePathError
impl Eq for TablePathError
Source§impl PartialEq for TablePathError
impl PartialEq for TablePathError
Source§fn eq(&self, other: &TablePathError) -> bool
fn eq(&self, other: &TablePathError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TablePathError
Auto Trait Implementations§
impl Freeze for TablePathError
impl RefUnwindSafe for TablePathError
impl Send for TablePathError
impl Sync for TablePathError
impl Unpin for TablePathError
impl UnsafeUnpin for TablePathError
impl UnwindSafe for TablePathError
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