pub struct TriageVerdict {
pub issue: i64,
pub worth_doing: bool,
pub reason: String,
pub complexity: Complexity,
pub depends_on: Vec<i64>,
pub risk: Risk,
}Fields§
§issue: i64§worth_doing: bool§reason: String§complexity: Complexity§depends_on: Vec<i64>§risk: RiskTrait Implementations§
Source§impl Clone for TriageVerdict
impl Clone for TriageVerdict
Source§fn clone(&self) -> TriageVerdict
fn clone(&self) -> TriageVerdict
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 TriageVerdict
impl Debug for TriageVerdict
Source§impl<'de> Deserialize<'de> for TriageVerdict
impl<'de> Deserialize<'de> for TriageVerdict
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TriageVerdict
impl RefUnwindSafe for TriageVerdict
impl Send for TriageVerdict
impl Sync for TriageVerdict
impl Unpin for TriageVerdict
impl UnsafeUnpin for TriageVerdict
impl UnwindSafe for TriageVerdict
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