pub enum TablePathRefPart {
Segment(String),
Current,
Parent,
}Expand description
One component in a textual table path reference.
Variants§
Segment(String)
A validated path segment.
Current
The current path marker, ..
Parent
The parent path marker, ...
Trait Implementations§
Source§impl Clone for TablePathRefPart
impl Clone for TablePathRefPart
Source§fn clone(&self) -> TablePathRefPart
fn clone(&self) -> TablePathRefPart
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 TablePathRefPart
impl Debug for TablePathRefPart
impl Eq for TablePathRefPart
Source§impl PartialEq for TablePathRefPart
impl PartialEq for TablePathRefPart
impl StructuralPartialEq for TablePathRefPart
Auto Trait Implementations§
impl Freeze for TablePathRefPart
impl RefUnwindSafe for TablePathRefPart
impl Send for TablePathRefPart
impl Sync for TablePathRefPart
impl Unpin for TablePathRefPart
impl UnsafeUnpin for TablePathRefPart
impl UnwindSafe for TablePathRefPart
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