#[repr(i32)]pub enum WeekDaysUnixOffset {
Thu = 0,
Fri = 1,
Sat = 2,
Sun = 3,
Mon = 4,
Tue = 5,
Wed = 6,
}
Variants§
Trait Implementations§
Source§impl Display for WeekDaysUnixOffset
impl Display for WeekDaysUnixOffset
Source§impl From<String> for WeekDaysUnixOffset
impl From<String> for WeekDaysUnixOffset
Source§impl From<WeekDaysUnixOffset> for usize
impl From<WeekDaysUnixOffset> for usize
Source§fn from(value: WeekDaysUnixOffset) -> Self
fn from(value: WeekDaysUnixOffset) -> Self
Converts to this type from the input type.
Source§impl From<i32> for WeekDaysUnixOffset
impl From<i32> for WeekDaysUnixOffset
Auto Trait Implementations§
impl Freeze for WeekDaysUnixOffset
impl RefUnwindSafe for WeekDaysUnixOffset
impl Send for WeekDaysUnixOffset
impl Sync for WeekDaysUnixOffset
impl Unpin for WeekDaysUnixOffset
impl UnwindSafe for WeekDaysUnixOffset
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> 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 moreSource§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read more