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 FromStr for PgLQueryLevel
impl FromStr for PgLQueryLevel
source§impl PartialEq for PgLQueryLevel
impl PartialEq 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 ==
.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