pub enum DatabaseOption {
CharacterSet(String),
Collate(String),
Owner(Identifier),
Template(Identifier),
Encoding(String),
Location(String),
}Expand description
Database option
Variants§
CharacterSet(String)
Collate(String)
Owner(Identifier)
Template(Identifier)
Encoding(String)
Location(String)
Trait Implementations§
Source§impl Clone for DatabaseOption
impl Clone for DatabaseOption
Source§fn clone(&self) -> DatabaseOption
fn clone(&self) -> DatabaseOption
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 DatabaseOption
impl Debug for DatabaseOption
Source§impl<'de> Deserialize<'de> for DatabaseOption
impl<'de> Deserialize<'de> for DatabaseOption
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 DatabaseOption
impl PartialEq for DatabaseOption
Source§impl Serialize for DatabaseOption
impl Serialize for DatabaseOption
impl StructuralPartialEq for DatabaseOption
Auto Trait Implementations§
impl Freeze for DatabaseOption
impl RefUnwindSafe for DatabaseOption
impl Send for DatabaseOption
impl Sync for DatabaseOption
impl Unpin for DatabaseOption
impl UnwindSafe for DatabaseOption
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