pub struct AlterTextSearch {
pub object_type: TextSearchObjectType,
pub name: ObjectName,
pub operation: AlterTextSearchOperation,
}Expand description
ALTER TEXT SEARCH ... statement.
See PostgreSQL.
Fields§
§object_type: TextSearchObjectTypeThe specific text search object type.
name: ObjectNameObject name.
operation: AlterTextSearchOperationOperation to apply.
Trait Implementations§
Source§impl Clone for AlterTextSearch
impl Clone for AlterTextSearch
Source§fn clone(&self) -> AlterTextSearch
fn clone(&self) -> AlterTextSearch
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 AlterTextSearch
impl Debug for AlterTextSearch
Source§impl<'de> Deserialize<'de> for AlterTextSearch
impl<'de> Deserialize<'de> for AlterTextSearch
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 AlterTextSearch
impl Display for AlterTextSearch
impl Eq for AlterTextSearch
Source§impl From<AlterTextSearch> for Statement
impl From<AlterTextSearch> for Statement
Source§fn from(a: AlterTextSearch) -> Self
fn from(a: AlterTextSearch) -> Self
Converts to this type from the input type.
Source§impl Hash for AlterTextSearch
impl Hash for AlterTextSearch
Source§impl Ord for AlterTextSearch
impl Ord for AlterTextSearch
Source§fn cmp(&self, other: &AlterTextSearch) -> Ordering
fn cmp(&self, other: &AlterTextSearch) -> 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 AlterTextSearch
impl PartialEq for AlterTextSearch
Source§fn eq(&self, other: &AlterTextSearch) -> bool
fn eq(&self, other: &AlterTextSearch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AlterTextSearch
impl PartialOrd for AlterTextSearch
Source§impl Serialize for AlterTextSearch
impl Serialize for AlterTextSearch
Source§impl Spanned for AlterTextSearch
impl Spanned for AlterTextSearch
impl StructuralPartialEq for AlterTextSearch
Source§impl Visit for AlterTextSearch
impl Visit for AlterTextSearch
Source§impl VisitMut for AlterTextSearch
impl VisitMut for AlterTextSearch
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 AlterTextSearch
impl RefUnwindSafe for AlterTextSearch
impl Send for AlterTextSearch
impl Sync for AlterTextSearch
impl Unpin for AlterTextSearch
impl UnsafeUnpin for AlterTextSearch
impl UnwindSafe for AlterTextSearch
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