pub struct PagerankScore {
pub id: i64,
pub index: i64,
pub title: String,
pub page_rank: f64,
pub priority: i32,
pub is_blocked: bool,
pub blocker_count: i32,
}Expand description
A PageRank score for an issue.
Fields§
§id: i64Issue ID.
index: i64Issue number/index.
title: StringIssue title.
page_rank: f64PageRank score (higher = more downstream impact).
priority: i32Priority level.
is_blocked: boolWhether the issue is blocked.
blocker_count: i32Number of blockers.
Trait Implementations§
Source§impl Clone for PagerankScore
impl Clone for PagerankScore
Source§fn clone(&self) -> PagerankScore
fn clone(&self) -> PagerankScore
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 PagerankScore
impl Debug for PagerankScore
Source§impl<'de> Deserialize<'de> for PagerankScore
impl<'de> Deserialize<'de> for PagerankScore
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 PagerankScore
impl RefUnwindSafe for PagerankScore
impl Send for PagerankScore
impl Sync for PagerankScore
impl Unpin for PagerankScore
impl UnsafeUnpin for PagerankScore
impl UnwindSafe for PagerankScore
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