pub enum PartIiCapacity {
Fits,
Overflow(PartIiOverflow),
}Expand description
The verdict [part_ii_capacity_check] returns.
Variants§
Fits
The narrative fits (including an empty one).
Overflow(PartIiOverflow)
The narrative does not fit — detail for building a refusal message.
Trait Implementations§
Source§impl Clone for PartIiCapacity
impl Clone for PartIiCapacity
Source§fn clone(&self) -> PartIiCapacity
fn clone(&self) -> PartIiCapacity
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 PartIiCapacity
Auto Trait Implementations§
impl Freeze for PartIiCapacity
impl RefUnwindSafe for PartIiCapacity
impl Send for PartIiCapacity
impl Sync for PartIiCapacity
impl Unpin for PartIiCapacity
impl UnsafeUnpin for PartIiCapacity
impl UnwindSafe for PartIiCapacity
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