pub struct SqlComment {
pub text: String,
pub is_block: bool,
}Expand description
SQL Comment preservation
Fields§
§text: String§is_block: boolTrait Implementations§
Source§impl Clone for SqlComment
impl Clone for SqlComment
Source§fn clone(&self) -> SqlComment
fn clone(&self) -> SqlComment
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 SqlComment
impl Debug for SqlComment
Source§impl<'de> Deserialize<'de> for SqlComment
impl<'de> Deserialize<'de> for SqlComment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SqlComment
impl PartialEq for SqlComment
Source§impl Serialize for SqlComment
impl Serialize for SqlComment
impl StructuralPartialEq for SqlComment
Auto Trait Implementations§
impl Freeze for SqlComment
impl RefUnwindSafe for SqlComment
impl Send for SqlComment
impl Sync for SqlComment
impl Unpin for SqlComment
impl UnwindSafe for SqlComment
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