pub struct PartsPart {
pub id: i32,
pub created_at: NaiveDateTime,
pub updated_at: NaiveDateTime,
pub quantity: i32,
pub bom_ver: i32,
pub refdes: String,
pub nostuff: i32,
pub bom_part_id: i32,
pub part_id: i32,
}Fields§
§id: i32§created_at: NaiveDateTime§updated_at: NaiveDateTime§quantity: i32§bom_ver: i32§refdes: String§nostuff: i32§bom_part_id: i32§part_id: i32Trait Implementations§
Source§impl<'ident> Identifiable for &'ident PartsPart
impl<'ident> Identifiable for &'ident PartsPart
Auto Trait Implementations§
impl Freeze for PartsPart
impl RefUnwindSafe for PartsPart
impl Send for PartsPart
impl Sync for PartsPart
impl Unpin for PartsPart
impl UnsafeUnpin for PartsPart
impl UnwindSafe for PartsPart
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