pub struct EffortSchedule {
pub round_1: Option<String>,
pub rest: Option<String>,
}Fields§
§round_1: Option<String>The deep first review.
rest: Option<String>Later rounds only see a small delta.
Trait Implementations§
Source§impl Clone for EffortSchedule
impl Clone for EffortSchedule
Source§fn clone(&self) -> EffortSchedule
fn clone(&self) -> EffortSchedule
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 EffortSchedule
impl Debug for EffortSchedule
Source§impl Default for EffortSchedule
impl Default for EffortSchedule
Source§fn default() -> EffortSchedule
fn default() -> EffortSchedule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EffortSchedule
impl<'de> Deserialize<'de> for EffortSchedule
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 EffortSchedule
impl RefUnwindSafe for EffortSchedule
impl Send for EffortSchedule
impl Sync for EffortSchedule
impl Unpin for EffortSchedule
impl UnsafeUnpin for EffortSchedule
impl UnwindSafe for EffortSchedule
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