pub struct CentralityResult {
pub scores: HashMap<VertexId, f64>,
pub algorithm: CentralityAlgorithm,
}Expand description
中央性指標の結果
Fields§
§scores: HashMap<VertexId, f64>頂点ごとの中央性スコア
algorithm: CentralityAlgorithmアルゴリズム種別
Trait Implementations§
Source§impl Clone for CentralityResult
impl Clone for CentralityResult
Source§fn clone(&self) -> CentralityResult
fn clone(&self) -> CentralityResult
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 moreAuto Trait Implementations§
impl Freeze for CentralityResult
impl RefUnwindSafe for CentralityResult
impl Send for CentralityResult
impl Sync for CentralityResult
impl Unpin for CentralityResult
impl UnwindSafe for CentralityResult
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