Struct rust_query::value::MyLt
source · pub struct MyLt<A>(/* private fields */);
Trait Implementations§
source§impl<'t, A: Value<'t>> Value<'t> for MyLt<A>
impl<'t, A: Value<'t>> Value<'t> for MyLt<A>
type Typ = bool
fn add<T: Value<'t>>(self, rhs: T) -> MyAdd<Self, T>
fn lt(self, rhs: i32) -> MyLt<Self>
fn eq<T: Value<'t, Typ = Self::Typ>>(self, rhs: T) -> MyEq<Self, T>
fn not(self) -> MyNot<Self>
fn and<T: Value<'t, Typ = bool>>(self, rhs: T) -> MyAnd<Self, T>
fn unwrap_or<T: Value<'t>>(self, rhs: T) -> UnwrapOr<Self, T>
fn is_not_null(self) -> IsNotNull<Self>
impl<A: Copy> Copy for MyLt<A>
Auto Trait Implementations§
impl<A> Freeze for MyLt<A>where
A: Freeze,
impl<A> RefUnwindSafe for MyLt<A>where
A: RefUnwindSafe,
impl<A> Send for MyLt<A>where
A: Send,
impl<A> Sync for MyLt<A>where
A: Sync,
impl<A> Unpin for MyLt<A>where
A: Unpin,
impl<A> UnwindSafe for MyLt<A>where
A: UnwindSafe,
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