[][src]Struct acari_lib::Project

pub struct Project {
    pub id: ProjectId,
    pub name: String,
    pub customer_id: CustomerId,
    pub customer_name: String,
    pub note: String,
    pub budget: u32,
    pub budget_type: String,
    pub hourly_rate: Option<u32>,
    pub archived: bool,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
}

Fields

id: ProjectIdname: Stringcustomer_id: CustomerIdcustomer_name: Stringnote: Stringbudget: u32budget_type: Stringhourly_rate: Option<u32>archived: boolcreated_at: DateTime<Utc>updated_at: DateTime<Utc>

Trait Implementations

impl Debug for Project[src]

impl<'de> Deserialize<'de> for Project[src]

impl Eq for Project[src]

impl PartialEq<Project> for Project[src]

impl Serialize for Project[src]

impl StructuralEq for Project[src]

impl StructuralPartialEq for Project[src]

Auto Trait Implementations

impl RefUnwindSafe for Project

impl Send for Project

impl Sync for Project

impl Unpin for Project

impl UnwindSafe for Project

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.