pub struct SupplyProblem {
pub cn: String,
pub name: String,
pub fini: i64,
pub ffin: Option<i64>,
pub observations: Option<String>,
pub active: bool,
}Expand description
Supply problem for a presentation
Fields§
§cn: StringNational code
name: StringPresentation name
fini: i64Start date (Unix Epoch GMT+2:00)
ffin: Option<i64>Expected end date or resolution date (Unix Epoch GMT+2:00)
observations: Option<String>Observations
active: boolIndicates if still active
Trait Implementations§
Source§impl Clone for SupplyProblem
impl Clone for SupplyProblem
Source§fn clone(&self) -> SupplyProblem
fn clone(&self) -> SupplyProblem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SupplyProblem
impl Debug for SupplyProblem
Source§impl<'de> Deserialize<'de> for SupplyProblem
impl<'de> Deserialize<'de> for SupplyProblem
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
Auto Trait Implementations§
impl Freeze for SupplyProblem
impl RefUnwindSafe for SupplyProblem
impl Send for SupplyProblem
impl Sync for SupplyProblem
impl Unpin for SupplyProblem
impl UnsafeUnpin for SupplyProblem
impl UnwindSafe for SupplyProblem
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