pub struct Painting {
pub pieces: Vec<Piece>,
pub ok: bool,
}Expand description
A tiling of one text, and whether the thing that read it had a complaint.
Fields§
§pieces: Vec<Piece>§ok: boolFalse when the reader had something to say: for paint, that the
lexer did; for disassembly, that a line was not one of the shapes
cove_ir::print writes. The pieces are still a tiling of the whole
text either way; this says how much to trust their colours.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Painting
impl RefUnwindSafe for Painting
impl Send for Painting
impl Sync for Painting
impl Unpin for Painting
impl UnsafeUnpin for Painting
impl UnwindSafe for Painting
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