Enum sqlx_postgres::types::PgLQueryLevel
source · pub enum PgLQueryLevel {
Star(Option<u16>, Option<u16>),
NonStar(Vec<PgLQueryVariant>),
NotNonStar(Vec<PgLQueryVariant>),
}
Variants§
Star(Option<u16>, Option<u16>)
match any label (*) with optional at least / at most numbers
NonStar(Vec<PgLQueryVariant>)
match any of specified labels with optional flags
NotNonStar(Vec<PgLQueryVariant>)
match none of specified labels with optional flags
Trait Implementations§
source§impl Clone for PgLQueryLevel
impl Clone for PgLQueryLevel
source§fn clone(&self) -> PgLQueryLevel
fn clone(&self) -> PgLQueryLevel
Returns a copy 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 PgLQueryLevel
impl Debug for PgLQueryLevel
source§impl Display for PgLQueryLevel
impl Display for PgLQueryLevel
source§impl FromIterator<PgLQueryLevel> for PgLQuery
impl FromIterator<PgLQueryLevel> for PgLQuery
source§fn from_iter<T: IntoIterator<Item = PgLQueryLevel>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = PgLQueryLevel>>(iter: T) -> Self
Creates a value from an iterator. Read more
source§impl FromStr for PgLQueryLevel
impl FromStr for PgLQueryLevel
source§impl PartialEq for PgLQueryLevel
impl PartialEq for PgLQueryLevel
impl StructuralPartialEq for PgLQueryLevel
Auto Trait Implementations§
impl Freeze for PgLQueryLevel
impl RefUnwindSafe for PgLQueryLevel
impl Send for PgLQueryLevel
impl Sync for PgLQueryLevel
impl Unpin for PgLQueryLevel
impl UnwindSafe for PgLQueryLevel
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more