pub enum TickOutcome {
NoFindings,
IssueCreated {
url: String,
},
Error {
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for TickOutcome
impl Clone for TickOutcome
Source§fn clone(&self) -> TickOutcome
fn clone(&self) -> TickOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TickOutcome
impl Debug for TickOutcome
Source§impl PartialEq for TickOutcome
impl PartialEq for TickOutcome
Source§fn eq(&self, other: &TickOutcome) -> bool
fn eq(&self, other: &TickOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TickOutcome
impl StructuralPartialEq for TickOutcome
Auto Trait Implementations§
impl Freeze for TickOutcome
impl RefUnwindSafe for TickOutcome
impl Send for TickOutcome
impl Sync for TickOutcome
impl Unpin for TickOutcome
impl UnsafeUnpin for TickOutcome
impl UnwindSafe for TickOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.