pub enum SubmitTarget {
GitHub {
repo: String,
},
Endpoint(String),
DryRun,
}Expand description
Target for submitting false positive reports.
Variants§
GitHub
Submit to GitHub Issues using gh CLI
Endpoint(String)
Submit to a custom endpoint (future use)
DryRun
Dry run - print to stdout without submitting
Trait Implementations§
Source§impl Clone for SubmitTarget
impl Clone for SubmitTarget
Source§fn clone(&self) -> SubmitTarget
fn clone(&self) -> SubmitTarget
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SubmitTarget
impl Debug for SubmitTarget
Auto Trait Implementations§
impl Freeze for SubmitTarget
impl RefUnwindSafe for SubmitTarget
impl Send for SubmitTarget
impl Sync for SubmitTarget
impl Unpin for SubmitTarget
impl UnwindSafe for SubmitTarget
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