pub enum TablespaceType {
StorageDisk,
StorageMemory,
}
Expand description
STORAGE {DISK | MEMORY}
Variants§
Implementations§
Source§impl TablespaceType
impl TablespaceType
pub fn parse(i: &str) -> IResult<&str, TablespaceType, ParseSQLError<&str>>
Trait Implementations§
Source§impl Clone for TablespaceType
impl Clone for TablespaceType
Source§fn clone(&self) -> TablespaceType
fn clone(&self) -> TablespaceType
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 TablespaceType
impl Debug for TablespaceType
Source§impl<'de> Deserialize<'de> for TablespaceType
impl<'de> Deserialize<'de> for TablespaceType
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 Display for TablespaceType
impl Display for TablespaceType
Source§impl Hash for TablespaceType
impl Hash for TablespaceType
Source§impl PartialEq for TablespaceType
impl PartialEq for TablespaceType
Source§impl Serialize for TablespaceType
impl Serialize for TablespaceType
impl Eq for TablespaceType
impl StructuralPartialEq for TablespaceType
Auto Trait Implementations§
impl Freeze for TablespaceType
impl RefUnwindSafe for TablespaceType
impl Send for TablespaceType
impl Sync for TablespaceType
impl Unpin for TablespaceType
impl UnwindSafe for TablespaceType
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