pub enum SqlPart {
Raw(Arc<str>),
Placeholder(Arc<str>, Option<PlaceholderValue>),
}
Expand description
SQL Part
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SqlPart
impl RefUnwindSafe for SqlPart
impl Send for SqlPart
impl Sync for SqlPart
impl Unpin for SqlPart
impl UnwindSafe for SqlPart
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