pub struct CharArray {
pub data: Vec<char>,
pub rows: usize,
pub cols: usize,
}Fields§
§data: Vec<char>§rows: usize§cols: usizeImplementations§
Trait Implementations§
impl StructuralPartialEq for CharArray
Auto Trait Implementations§
impl Freeze for CharArray
impl RefUnwindSafe for CharArray
impl Send for CharArray
impl Sync for CharArray
impl Unpin for CharArray
impl UnwindSafe for CharArray
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