pub struct CycleShiftAllInput {
pub id: Option<String>,
pub days_to_shift: Option<f64>,
}Expand description
Input for shifting all cycles from a certain cycle onwards by a certain number of days
Fields§
§id: Option<String>The cycle ID at which to start the shift.
days_to_shift: Option<f64>The number of days to shift the cycles by.
Trait Implementations§
Source§impl Clone for CycleShiftAllInput
impl Clone for CycleShiftAllInput
Source§fn clone(&self) -> CycleShiftAllInput
fn clone(&self) -> CycleShiftAllInput
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 CycleShiftAllInput
impl Debug for CycleShiftAllInput
Source§impl Default for CycleShiftAllInput
impl Default for CycleShiftAllInput
Source§fn default() -> CycleShiftAllInput
fn default() -> CycleShiftAllInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CycleShiftAllInput
impl<'de> Deserialize<'de> for CycleShiftAllInput
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 CycleShiftAllInput
impl RefUnwindSafe for CycleShiftAllInput
impl Send for CycleShiftAllInput
impl Sync for CycleShiftAllInput
impl Unpin for CycleShiftAllInput
impl UnwindSafe for CycleShiftAllInput
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