pub struct ParsedCliTable {
pub fname: String,
pub rows: Vec<CliTableRow>,
}Expand description
Represents a CLI table index file parsed into memory.
Fields§
§fname: StringThe filename of the index.
rows: Vec<CliTableRow>The rows of the table.
Implementations§
Trait Implementations§
Source§impl Clone for ParsedCliTable
impl Clone for ParsedCliTable
Source§fn clone(&self) -> ParsedCliTable
fn clone(&self) -> ParsedCliTable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsedCliTable
impl RefUnwindSafe for ParsedCliTable
impl Send for ParsedCliTable
impl Sync for ParsedCliTable
impl Unpin for ParsedCliTable
impl UnwindSafe for ParsedCliTable
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