pub struct RowItem {
pub id: String,
pub title: String,
pub extra: Vec<(String, String)>,
}Expand description
A single parsed row from an index file (one tab/space-separated line).
Used as the intermediate carrier between ndc’s flat text index format and
a hyle Source. Convert to a Row with RowItem::into_row.
Fields§
§id: String§title: String§extra: Vec<(String, String)>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RowItem
impl RefUnwindSafe for RowItem
impl Send for RowItem
impl Sync for RowItem
impl Unpin for RowItem
impl UnsafeUnpin for RowItem
impl UnwindSafe for RowItem
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