#[non_exhaustive]pub enum RdConstruct {
Tag(RdTag),
OptionKey(String),
ColumnSpec,
TableRow,
SystemMacro(String),
SystemMacroExpansion(String),
}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 RdConstruct
impl Clone for RdConstruct
Source§fn clone(&self) -> RdConstruct
fn clone(&self) -> RdConstruct
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 RdConstruct
impl Debug for RdConstruct
Source§impl Display for RdConstruct
impl Display for RdConstruct
impl Eq for RdConstruct
Source§impl PartialEq for RdConstruct
impl PartialEq for RdConstruct
impl StructuralPartialEq for RdConstruct
Auto Trait Implementations§
impl Freeze for RdConstruct
impl RefUnwindSafe for RdConstruct
impl Send for RdConstruct
impl Sync for RdConstruct
impl Unpin for RdConstruct
impl UnsafeUnpin for RdConstruct
impl UnwindSafe for RdConstruct
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