pub struct EstimateItemCategory {
pub id: Option<i64>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub name: Option<String>,
}Fields§
§id: Option<i64>Unique ID for the estimate item category.
created_at: Option<String>Date and time the estimate item category was created.
updated_at: Option<String>Date and time the estimate item category was last updated.
name: Option<String>The name of the estimate item category.
Trait Implementations§
Source§impl Debug for EstimateItemCategory
impl Debug for EstimateItemCategory
Source§impl Default for EstimateItemCategory
impl Default for EstimateItemCategory
Source§fn default() -> EstimateItemCategory
fn default() -> EstimateItemCategory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EstimateItemCategory
impl<'de> Deserialize<'de> for EstimateItemCategory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for EstimateItemCategory
impl Display for EstimateItemCategory
Auto Trait Implementations§
impl Freeze for EstimateItemCategory
impl RefUnwindSafe for EstimateItemCategory
impl Send for EstimateItemCategory
impl Sync for EstimateItemCategory
impl Unpin for EstimateItemCategory
impl UnwindSafe for EstimateItemCategory
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