pub struct FromRows {
pub fields: Vec<String>,
pub separator: String,
}Expand description
A completion list the browser builds from the rows on screen: trim each
named field, drop the row when the first field is blank, join the non-blank
ones with separator, then dedupe and sort.
Fields§
§fields: Vec<String>§separator: StringTrait Implementations§
impl Eq for FromRows
impl StructuralPartialEq for FromRows
Auto Trait Implementations§
impl Freeze for FromRows
impl RefUnwindSafe for FromRows
impl Send for FromRows
impl Sync for FromRows
impl Unpin for FromRows
impl UnsafeUnpin for FromRows
impl UnwindSafe for FromRows
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