pub enum AccessMethodType {
Index,
Table,
}Expand description
The type of access method in CREATE ACCESS METHOD.
Note: this is a PostgreSQL-specific concept. https://www.postgresql.org/docs/current/sql-create-access-method.html
Variants§
Trait Implementations§
Source§impl Clone for AccessMethodType
impl Clone for AccessMethodType
Source§fn clone(&self) -> AccessMethodType
fn clone(&self) -> AccessMethodType
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 AccessMethodType
impl Debug for AccessMethodType
Source§impl<'de> Deserialize<'de> for AccessMethodType
impl<'de> Deserialize<'de> for AccessMethodType
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 AccessMethodType
impl Display for AccessMethodType
Source§impl Hash for AccessMethodType
impl Hash for AccessMethodType
Source§impl Ord for AccessMethodType
impl Ord for AccessMethodType
Source§fn cmp(&self, other: &AccessMethodType) -> Ordering
fn cmp(&self, other: &AccessMethodType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AccessMethodType
impl PartialEq for AccessMethodType
Source§impl PartialOrd for AccessMethodType
impl PartialOrd for AccessMethodType
Source§impl Serialize for AccessMethodType
impl Serialize for AccessMethodType
Source§impl Visit for AccessMethodType
impl Visit for AccessMethodType
Source§impl VisitMut for AccessMethodType
impl VisitMut for AccessMethodType
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for AccessMethodType
impl StructuralPartialEq for AccessMethodType
Auto Trait Implementations§
impl Freeze for AccessMethodType
impl RefUnwindSafe for AccessMethodType
impl Send for AccessMethodType
impl Sync for AccessMethodType
impl Unpin for AccessMethodType
impl UnsafeUnpin for AccessMethodType
impl UnwindSafe for AccessMethodType
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