pub enum RequiredCapacityPlanError {
EmptySuccessorSet,
ArithmeticOverflow {
dimension: ResourceDimension,
},
}Expand description
Invalid required-capacity simulation.
Variants§
EmptySuccessorSet
A successor simulation supplied no reachable state.
ArithmeticOverflow
A checked ordinary-capacity addition exceeded u128.
Fields
§
dimension: ResourceDimensionFirst overflowing component.
Trait Implementations§
Source§impl Clone for RequiredCapacityPlanError
impl Clone for RequiredCapacityPlanError
Source§fn clone(&self) -> RequiredCapacityPlanError
fn clone(&self) -> RequiredCapacityPlanError
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 moreimpl Copy for RequiredCapacityPlanError
Source§impl Debug for RequiredCapacityPlanError
impl Debug for RequiredCapacityPlanError
impl Eq for RequiredCapacityPlanError
impl StructuralPartialEq for RequiredCapacityPlanError
Auto Trait Implementations§
impl Freeze for RequiredCapacityPlanError
impl RefUnwindSafe for RequiredCapacityPlanError
impl Send for RequiredCapacityPlanError
impl Sync for RequiredCapacityPlanError
impl Unpin for RequiredCapacityPlanError
impl UnsafeUnpin for RequiredCapacityPlanError
impl UnwindSafe for RequiredCapacityPlanError
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