pub struct NewWorklog {
pub task_id: i32,
}Fields§
§task_id: i32Trait Implementations§
Source§impl Debug for NewWorklog
impl Debug for NewWorklog
Source§impl Default for NewWorklog
impl Default for NewWorklog
Source§fn default() -> NewWorklog
fn default() -> NewWorklog
Returns the “default value” for a type. Read more
Source§impl<'insert> Insertable<table> for &'insert NewWorklog
impl<'insert> Insertable<table> for &'insert NewWorklog
Source§type Values = <(Option<Eq<task_id, <&'insert i32 as AsExpression<<task_id as Expression>::SqlType>>::Expression>>,) as Insertable<table>>::Values
type Values = <(Option<Eq<task_id, <&'insert i32 as AsExpression<<task_id as Expression>::SqlType>>::Expression>>,) as Insertable<table>>::Values
The
VALUES clause to insert these records Read moreSource§fn insert_into(self, table: T) -> InsertStatement<T, Self::Values>where
Self: Sized,
fn insert_into(self, table: T) -> InsertStatement<T, Self::Values>where
Self: Sized,
Insert
self into a given table. Read moreSource§impl<'insert> Insertable<table> for NewWorklog
impl<'insert> Insertable<table> for NewWorklog
Source§type Values = <(Option<Eq<task_id, <i32 as AsExpression<<task_id as Expression>::SqlType>>::Expression>>,) as Insertable<table>>::Values
type Values = <(Option<Eq<task_id, <i32 as AsExpression<<task_id as Expression>::SqlType>>::Expression>>,) as Insertable<table>>::Values
The
VALUES clause to insert these records Read moreSource§fn insert_into(self, table: T) -> InsertStatement<T, Self::Values>where
Self: Sized,
fn insert_into(self, table: T) -> InsertStatement<T, Self::Values>where
Self: Sized,
Insert
self into a given table. Read moreimpl<'insert> UndecoratedInsertRecord<table> for NewWorklog
Auto Trait Implementations§
impl Freeze for NewWorklog
impl RefUnwindSafe for NewWorklog
impl Send for NewWorklog
impl Sync for NewWorklog
impl Unpin for NewWorklog
impl UnsafeUnpin for NewWorklog
impl UnwindSafe for NewWorklog
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> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
Convert
self to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
Convert
&self to an expression for Diesel’s query builder. Read more