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 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 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§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