pub struct ContractCycle {
pub name: String,
pub description: Option<String>,
pub months: Vec<String>,
}Fields§
§name: String§description: Option<String>§months: Vec<String>Trait Implementations§
Source§impl Clone for ContractCycle
impl Clone for ContractCycle
Source§fn clone(&self) -> ContractCycle
fn clone(&self) -> ContractCycle
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 ContractCycle
impl Debug for ContractCycle
Source§impl<'de> Deserialize<'de> for ContractCycle
impl<'de> Deserialize<'de> for ContractCycle
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 ContractCycle
impl RefUnwindSafe for ContractCycle
impl Send for ContractCycle
impl Sync for ContractCycle
impl Unpin for ContractCycle
impl UnsafeUnpin for ContractCycle
impl UnwindSafe for ContractCycle
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