pub enum LineBody {
SingleCause,
Body {
further: usize,
capping: Capping,
},
}Expand description
What one composed line is a summary OF.
A single-cause refusal establishes one cause and enumerates nothing: there is no remainder to count and no bound anything could have been capped at, so a line reporting “and 0 further issues, complete” would answer a question never asked of it.
Variants§
SingleCause
One established cause, with nothing enumerated beside it.
Body
A body of independent issues.
Trait Implementations§
impl Copy for LineBody
impl Eq for LineBody
impl StructuralPartialEq for LineBody
Auto Trait Implementations§
impl Freeze for LineBody
impl RefUnwindSafe for LineBody
impl Send for LineBody
impl Sync for LineBody
impl Unpin for LineBody
impl UnsafeUnpin for LineBody
impl UnwindSafe for LineBody
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