pub struct PasteReport {
pub summary: String,
pub clipped: usize,
pub warnings: Vec<String>,
}Expand description
The outcome of a paste, ready for the editor’s status bar.
Fields§
§summary: StringA compact one-line summary that fits the status bar.
clipped: usizeItems that did not fit (capacity) or fell outside the sheet/map.
warnings: Vec<String>Per-reference warnings; the count is folded into summary.
Auto Trait Implementations§
impl Freeze for PasteReport
impl RefUnwindSafe for PasteReport
impl Send for PasteReport
impl Sync for PasteReport
impl Unpin for PasteReport
impl UnsafeUnpin for PasteReport
impl UnwindSafe for PasteReport
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