pub struct BridgeScore {
pub axis: Symbol,
pub value: i64,
pub reason: String,
}Expand description
One axis in a structured collaboration vote.
Fields§
§axis: SymbolAxis being scored, such as correctness or safety.
value: i64Signed score for this axis.
reason: StringReviewer rationale for this axis.
Implementations§
Trait Implementations§
Source§impl Clone for BridgeScore
impl Clone for BridgeScore
Source§fn clone(&self) -> BridgeScore
fn clone(&self) -> BridgeScore
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 BridgeScore
impl Debug for BridgeScore
impl Eq for BridgeScore
Source§impl PartialEq for BridgeScore
impl PartialEq for BridgeScore
impl StructuralPartialEq for BridgeScore
Auto Trait Implementations§
impl Freeze for BridgeScore
impl RefUnwindSafe for BridgeScore
impl Send for BridgeScore
impl Sync for BridgeScore
impl Unpin for BridgeScore
impl UnsafeUnpin for BridgeScore
impl UnwindSafe for BridgeScore
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