pub struct PageRankResult {
pub iterations: usize,
pub converged: bool,
pub nodes: Vec<NodePageRank>,
}Fields§
§iterations: usize§converged: bool§nodes: Vec<NodePageRank>Trait Implementations§
Source§impl Clone for PageRankResult
impl Clone for PageRankResult
Source§fn clone(&self) -> PageRankResult
fn clone(&self) -> PageRankResult
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 PageRankResult
impl Debug for PageRankResult
Auto Trait Implementations§
impl Freeze for PageRankResult
impl RefUnwindSafe for PageRankResult
impl Send for PageRankResult
impl Sync for PageRankResult
impl Unpin for PageRankResult
impl UnsafeUnpin for PageRankResult
impl UnwindSafe for PageRankResult
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