Enum sqlx::postgres::types::PgLQueryLevel
source · pub enum PgLQueryLevel {
Star(Option<u16>, Option<u16>),
NonStar(Vec<PgLQueryVariant, Global>),
NotNonStar(Vec<PgLQueryVariant, Global>),
}
Available on crate feature
postgres
only.Variants§
Star(Option<u16>, Option<u16>)
match any label (*) with optional at least / at most numbers
NonStar(Vec<PgLQueryVariant, Global>)
match any of specified labels with optional flags
NotNonStar(Vec<PgLQueryVariant, Global>)
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 FromStr for PgLQueryLevel
impl FromStr for PgLQueryLevel
source§impl PartialEq<PgLQueryLevel> for PgLQueryLevel
impl PartialEq<PgLQueryLevel> for PgLQueryLevel
source§fn eq(&self, other: &PgLQueryLevel) -> bool
fn eq(&self, other: &PgLQueryLevel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.