pub enum Seed {
Repo(String),
Users(Vec<String>),
}Expand description
What to screen: a repo (screen its stargazers) or an explicit set of users (screen them directly). The people-set differs; everything downstream — projection, classification, enrichment, scoring, selection — is identical.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Seed
impl RefUnwindSafe for Seed
impl Send for Seed
impl Sync for Seed
impl Unpin for Seed
impl UnsafeUnpin for Seed
impl UnwindSafe for Seed
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