pub enum SearchBackend {
Searxng {
url: String,
},
Brave {
url: String,
api_key: String,
},
}Expand description
A search service that SCV queries itself. Provider-hosted search is configured on the provider instead and needs no SCV tool.
Variants§
Trait Implementations§
Source§impl Clone for SearchBackend
impl Clone for SearchBackend
Auto Trait Implementations§
impl Freeze for SearchBackend
impl RefUnwindSafe for SearchBackend
impl Send for SearchBackend
impl Sync for SearchBackend
impl Unpin for SearchBackend
impl UnsafeUnpin for SearchBackend
impl UnwindSafe for SearchBackend
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