pub struct Decision {
pub parts: Vec<SplitPart>,
pub stacked: bool,
pub declined: Option<String>,
pub dropped: Vec<String>,
}Expand description
What survived the proposal, the check, and the cap.
Fields§
§parts: Vec<SplitPart>§stacked: boolEach part branched off the one before it, rather than off the base.
declined: Option<String>Why nothing is being split, when nothing is.
dropped: Vec<String>Parts that were proposed and are not being made, said out loud because a cap that fires silently is a cap nobody can raise.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl Send for Decision
impl Sync for Decision
impl Unpin for Decision
impl UnsafeUnpin for Decision
impl UnwindSafe for Decision
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