pub struct DateVariableCompact {
pub description: String,
pub gid: String,
pub name: String,
}Fields§
§description: StringThe description of what the date variable is used for when instantiating a project.
gid: StringGlobally unique identifier of the date field in the project template. A value of 1 refers to the project start date, while 2 refers to the project due date.
name: StringThe name of the date variable.
Trait Implementations§
Source§impl Clone for DateVariableCompact
impl Clone for DateVariableCompact
Source§fn clone(&self) -> DateVariableCompact
fn clone(&self) -> DateVariableCompact
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 DateVariableCompact
impl Debug for DateVariableCompact
Source§impl Default for DateVariableCompact
impl Default for DateVariableCompact
Source§fn default() -> DateVariableCompact
fn default() -> DateVariableCompact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DateVariableCompact
impl<'de> Deserialize<'de> for DateVariableCompact
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 DateVariableCompact
impl Display for DateVariableCompact
Auto Trait Implementations§
impl Freeze for DateVariableCompact
impl RefUnwindSafe for DateVariableCompact
impl Send for DateVariableCompact
impl Sync for DateVariableCompact
impl Unpin for DateVariableCompact
impl UnsafeUnpin for DateVariableCompact
impl UnwindSafe for DateVariableCompact
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