#[non_exhaustive]pub enum SgError {
MaximumCapacityExceeded,
StackCapacityExceeded,
RebalanceFactorOutOfRange,
}
Expand description
Errors for fallible operations.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MaximumCapacityExceeded
Cannot construct instance, maximum supported capacity exceeded.
StackCapacityExceeded
Requested operation cannot complete, stack storage is full.
RebalanceFactorOutOfRange
Invalid rebalance factor requested, cannot set.
Trait Implementations§
impl Copy for SgError
impl Eq for SgError
impl StructuralPartialEq for SgError
Auto Trait Implementations§
impl Freeze for SgError
impl RefUnwindSafe for SgError
impl Send for SgError
impl Sync for SgError
impl Unpin for SgError
impl UnwindSafe for SgError
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