pub struct ProjectBudgetOverDetail {
pub budget_id: u32,
pub project_id: u32,
pub project_name: String,
pub over: bool,
pub cost: f64,
pub budget: u32,
}Fields§
§budget_id: u32§project_id: u32§project_name: String§over: bool§cost: f64§budget: u32Trait Implementations§
Source§impl Clone for ProjectBudgetOverDetail
impl Clone for ProjectBudgetOverDetail
Source§fn clone(&self) -> ProjectBudgetOverDetail
fn clone(&self) -> ProjectBudgetOverDetail
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProjectBudgetOverDetail
impl Debug for ProjectBudgetOverDetail
Source§impl<'de> Deserialize<'de> for ProjectBudgetOverDetail
impl<'de> Deserialize<'de> for ProjectBudgetOverDetail
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 PartialEq for ProjectBudgetOverDetail
impl PartialEq for ProjectBudgetOverDetail
Source§impl Serialize for ProjectBudgetOverDetail
impl Serialize for ProjectBudgetOverDetail
impl StructuralPartialEq for ProjectBudgetOverDetail
Auto Trait Implementations§
impl Freeze for ProjectBudgetOverDetail
impl RefUnwindSafe for ProjectBudgetOverDetail
impl Send for ProjectBudgetOverDetail
impl Sync for ProjectBudgetOverDetail
impl Unpin for ProjectBudgetOverDetail
impl UnwindSafe for ProjectBudgetOverDetail
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