pub struct WithOption<'a> {
pub name: Identifier<'a>,
pub eq_span: Span,
pub value: Expression<'a>,
}Expand description
A single key = value option inside a WITH (...) clause on CREATE INDEX.
Fields§
§name: Identifier<'a>§eq_span: Span§value: Expression<'a>Trait Implementations§
Source§impl<'a> Clone for WithOption<'a>
impl<'a> Clone for WithOption<'a>
Source§fn clone(&self) -> WithOption<'a>
fn clone(&self) -> WithOption<'a>
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<'a> Debug for WithOption<'a>
impl<'a> Debug for WithOption<'a>
Auto Trait Implementations§
impl<'a> Freeze for WithOption<'a>
impl<'a> RefUnwindSafe for WithOption<'a>
impl<'a> Send for WithOption<'a>
impl<'a> Sync for WithOption<'a>
impl<'a> Unpin for WithOption<'a>
impl<'a> UnsafeUnpin for WithOption<'a>
impl<'a> UnwindSafe for WithOption<'a>
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