#[repr(i32)]pub enum WeekDaysUnixOffset {
Thu = 0,
Fri = 1,
Sat = 2,
Sun = 3,
Mon = 4,
Tue = 5,
Wed = 6,
}
Variants§
Trait Implementations§
Source§impl Into<WeekDaysUnixOffset> for String
impl Into<WeekDaysUnixOffset> for String
Source§fn into(self) -> WeekDaysUnixOffset
fn into(self) -> WeekDaysUnixOffset
Converts this type into the (usually inferred) input type.
Source§impl Into<WeekDaysUnixOffset> for i32
impl Into<WeekDaysUnixOffset> for i32
Source§fn into(self) -> WeekDaysUnixOffset
fn into(self) -> WeekDaysUnixOffset
Converts this type into the (usually inferred) input type.
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