pub enum SortArg {
Relevance,
}Expand description
--sort choices for external discovery. Maps 1:1 onto
SearchSort; kept CLI-local so doiget-core carries no clap dep.
Variants§
Relevance
Best textual match first (OpenAlex relevance_score:desc).
The only sort: cited / recent were removed (#290) — over
OpenAlex’s loose free-text match they float off-topic papers to the
top. Use --min-fwci / --min-percentile / --from-year to
surface “important / recent” results as FILTERS instead.
Trait Implementations§
impl Eq for SortArg
Source§impl From<SortArg> for SearchSort
impl From<SortArg> for SearchSort
impl StructuralPartialEq for SortArg
Auto Trait Implementations§
impl Freeze for SortArg
impl RefUnwindSafe for SortArg
impl Send for SortArg
impl Sync for SortArg
impl Unpin for SortArg
impl UnsafeUnpin for SortArg
impl UnwindSafe for SortArg
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