pub enum FullTextOrSpatialKind {
Fulltext,
Spatial,
}Expand description
MySQL: kind of a standalone CREATE FULLTEXT INDEX / CREATE SPATIAL INDEX.
Variants§
Trait Implementations§
Source§impl Clone for FullTextOrSpatialKind
impl Clone for FullTextOrSpatialKind
Source§fn clone(&self) -> FullTextOrSpatialKind
fn clone(&self) -> FullTextOrSpatialKind
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 moreimpl Copy for FullTextOrSpatialKind
Source§impl Debug for FullTextOrSpatialKind
impl Debug for FullTextOrSpatialKind
Source§impl<'de> Deserialize<'de> for FullTextOrSpatialKind
impl<'de> Deserialize<'de> for FullTextOrSpatialKind
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 FullTextOrSpatialKind
impl Display for FullTextOrSpatialKind
impl Eq for FullTextOrSpatialKind
Source§impl Hash for FullTextOrSpatialKind
impl Hash for FullTextOrSpatialKind
Source§impl Ord for FullTextOrSpatialKind
impl Ord for FullTextOrSpatialKind
Source§fn cmp(&self, other: &FullTextOrSpatialKind) -> Ordering
fn cmp(&self, other: &FullTextOrSpatialKind) -> Ordering
1.21.0 (const: unstable) · 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 FullTextOrSpatialKind
impl PartialEq for FullTextOrSpatialKind
Source§fn eq(&self, other: &FullTextOrSpatialKind) -> bool
fn eq(&self, other: &FullTextOrSpatialKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FullTextOrSpatialKind
impl PartialOrd for FullTextOrSpatialKind
Source§impl Serialize for FullTextOrSpatialKind
impl Serialize for FullTextOrSpatialKind
impl StructuralPartialEq for FullTextOrSpatialKind
Source§impl Visit for FullTextOrSpatialKind
impl Visit for FullTextOrSpatialKind
Source§impl VisitMut for FullTextOrSpatialKind
impl VisitMut for FullTextOrSpatialKind
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 moreAuto Trait Implementations§
impl Freeze for FullTextOrSpatialKind
impl RefUnwindSafe for FullTextOrSpatialKind
impl Send for FullTextOrSpatialKind
impl Sync for FullTextOrSpatialKind
impl Unpin for FullTextOrSpatialKind
impl UnsafeUnpin for FullTextOrSpatialKind
impl UnwindSafe for FullTextOrSpatialKind
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