pub struct ReleaseDiffOptions {
pub horizon: (i32, i32),
pub split: i32,
pub zone_filter: Option<String>,
pub zdump_program: Option<String>,
}Expand description
Options for a release diff.
Fields§
§horizon: (i32, i32)Behaviour horizon in years (lo, hi).
split: i32The past/future split year (declared, deterministic — never host-now).
zone_filter: Option<String>Restrict to a single identifier.
zdump_program: Option<String>The zdump program for the behaviour axis. None ⇒ behaviour not assessed.
Trait Implementations§
Source§impl Clone for ReleaseDiffOptions
impl Clone for ReleaseDiffOptions
Source§fn clone(&self) -> ReleaseDiffOptions
fn clone(&self) -> ReleaseDiffOptions
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 moreAuto Trait Implementations§
impl Freeze for ReleaseDiffOptions
impl RefUnwindSafe for ReleaseDiffOptions
impl Send for ReleaseDiffOptions
impl Sync for ReleaseDiffOptions
impl Unpin for ReleaseDiffOptions
impl UnsafeUnpin for ReleaseDiffOptions
impl UnwindSafe for ReleaseDiffOptions
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