pub struct Part {
pub id: i32,
pub created_at: NaiveDateTime,
pub updated_at: NaiveDateTime,
pub pn: String,
pub mpn: String,
pub digikeypn: Option<String>,
pub descr: String,
pub ver: i32,
pub val: Option<String>,
pub mqty: i32,
}Fields§
§id: i32§created_at: NaiveDateTime§updated_at: NaiveDateTime§pn: String§mpn: String§digikeypn: Option<String>§descr: String§ver: i32§val: Option<String>§mqty: i32Trait Implementations§
Source§impl<'ident> Identifiable for &'ident Part
impl<'ident> Identifiable for &'ident Part
Auto Trait Implementations§
impl Freeze for Part
impl RefUnwindSafe for Part
impl Send for Part
impl Sync for Part
impl Unpin for Part
impl UnsafeUnpin for Part
impl UnwindSafe for Part
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