pub struct AlterTextSearchOption {
pub key: Ident,
pub value: Option<Expr>,
}Expand description
Option assignment used by ALTER TEXT SEARCH ... ( ... ).
See PostgreSQL.
Fields§
§key: IdentOption name.
value: Option<Expr>Optional value (option [= value]).
Trait Implementations§
Source§impl Clone for AlterTextSearchOption
impl Clone for AlterTextSearchOption
Source§fn clone(&self) -> AlterTextSearchOption
fn clone(&self) -> AlterTextSearchOption
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 AlterTextSearchOption
impl Debug for AlterTextSearchOption
Source§impl<'de> Deserialize<'de> for AlterTextSearchOption
impl<'de> Deserialize<'de> for AlterTextSearchOption
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 AlterTextSearchOption
impl Display for AlterTextSearchOption
impl Eq for AlterTextSearchOption
Source§impl Hash for AlterTextSearchOption
impl Hash for AlterTextSearchOption
Source§impl Ord for AlterTextSearchOption
impl Ord for AlterTextSearchOption
Source§fn cmp(&self, other: &AlterTextSearchOption) -> Ordering
fn cmp(&self, other: &AlterTextSearchOption) -> 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 AlterTextSearchOption
impl PartialEq for AlterTextSearchOption
Source§fn eq(&self, other: &AlterTextSearchOption) -> bool
fn eq(&self, other: &AlterTextSearchOption) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AlterTextSearchOption
impl PartialOrd for AlterTextSearchOption
Source§impl Serialize for AlterTextSearchOption
impl Serialize for AlterTextSearchOption
impl StructuralPartialEq for AlterTextSearchOption
Source§impl Visit for AlterTextSearchOption
impl Visit for AlterTextSearchOption
Source§impl VisitMut for AlterTextSearchOption
impl VisitMut for AlterTextSearchOption
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 AlterTextSearchOption
impl RefUnwindSafe for AlterTextSearchOption
impl Send for AlterTextSearchOption
impl Sync for AlterTextSearchOption
impl Unpin for AlterTextSearchOption
impl UnsafeUnpin for AlterTextSearchOption
impl UnwindSafe for AlterTextSearchOption
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