pub enum PragmaValue {
Int(i64),
Text(String),
}Expand description
Value supplied to a PRAGMA statement.
Variants§
Trait Implementations§
Source§impl Clone for PragmaValue
impl Clone for PragmaValue
Source§fn clone(&self) -> PragmaValue
fn clone(&self) -> PragmaValue
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 PragmaValue
impl Debug for PragmaValue
Source§impl<'de> Deserialize<'de> for PragmaValue
impl<'de> Deserialize<'de> for PragmaValue
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 PragmaValue
impl PartialEq for PragmaValue
Source§impl Serialize for PragmaValue
impl Serialize for PragmaValue
impl StructuralPartialEq for PragmaValue
Auto Trait Implementations§
impl Freeze for PragmaValue
impl RefUnwindSafe for PragmaValue
impl Send for PragmaValue
impl Sync for PragmaValue
impl Unpin for PragmaValue
impl UnsafeUnpin for PragmaValue
impl UnwindSafe for PragmaValue
Blanket Implementations§
impl<T> Allocation for T
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