#[non_exhaustive]pub struct user__TableHandle {}Trait Implementations§
Source§impl Table for user__TableHandle
impl Table for user__TableHandle
Source§type UniqueConstraintViolation = UniqueConstraintViolation
type UniqueConstraintViolation = UniqueConstraintViolation
The error type for this table for unique constraint violations. Will either be
UniqueConstraintViolation if the table has any unique constraints, or Infallible
otherwise.Source§type AutoIncOverflow = Infallible
type AutoIncOverflow = Infallible
The error type for this table for auto-increment overflows. Will either be
AutoIncOverflow if the table has any auto-incrementing columns, or Infallible
otherwise.Source§fn iter(&self) -> impl Iterator<Item = Self::Row>
fn iter(&self) -> impl Iterator<Item = Self::Row>
Iterate over all rows of the table. Read more
Source§fn try_insert(&self, row: Self::Row) -> Result<Self::Row, TryInsertError<Self>>
fn try_insert(&self, row: Self::Row) -> Result<Self::Row, TryInsertError<Self>>
Counterpart to
Self::insert which allows handling failed insertions. Read moreAuto Trait Implementations§
impl Freeze for user__TableHandle
impl RefUnwindSafe for user__TableHandle
impl Send for user__TableHandle
impl Sync for user__TableHandle
impl Unpin for user__TableHandle
impl UnsafeUnpin for user__TableHandle
impl UnwindSafe for user__TableHandle
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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