pub struct ModelCell {
pub ch: char,
pub style: ModelStyle,
pub link: Option<String>,
}Expand description
A single cell in the terminal model.
Fields§
§ch: char§style: ModelStyle§link: Option<String>Trait Implementations§
impl Eq for ModelCell
impl StructuralPartialEq for ModelCell
Auto Trait Implementations§
impl Freeze for ModelCell
impl RefUnwindSafe for ModelCell
impl Send for ModelCell
impl Sync for ModelCell
impl Unpin for ModelCell
impl UnsafeUnpin for ModelCell
impl UnwindSafe for ModelCell
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