pub enum CommentTarget {
Table(String),
Column {
table: String,
column: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for CommentTarget
impl Clone for CommentTarget
Source§fn clone(&self) -> CommentTarget
fn clone(&self) -> CommentTarget
Returns a duplicate 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 CommentTarget
impl Debug for CommentTarget
Source§impl PartialEq for CommentTarget
impl PartialEq for CommentTarget
impl StructuralPartialEq for CommentTarget
Auto Trait Implementations§
impl Freeze for CommentTarget
impl RefUnwindSafe for CommentTarget
impl Send for CommentTarget
impl Sync for CommentTarget
impl Unpin for CommentTarget
impl UnwindSafe for CommentTarget
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