pub struct CommentOnTable {
pub table_name: String,
pub comment: String,
}Expand description
COMMENT ON TABLE name IS ‘string’ — add a comment to a table.
Fields§
§table_name: String§comment: StringTrait Implementations§
Source§impl Clone for CommentOnTable
impl Clone for CommentOnTable
Source§fn clone(&self) -> CommentOnTable
fn clone(&self) -> CommentOnTable
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 CommentOnTable
impl Debug for CommentOnTable
Source§impl PartialEq for CommentOnTable
impl PartialEq for CommentOnTable
impl StructuralPartialEq for CommentOnTable
Auto Trait Implementations§
impl Freeze for CommentOnTable
impl RefUnwindSafe for CommentOnTable
impl Send for CommentOnTable
impl Sync for CommentOnTable
impl Unpin for CommentOnTable
impl UnsafeUnpin for CommentOnTable
impl UnwindSafe for CommentOnTable
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