pub struct Community {
pub id: usize,
pub members: Vec<String>,
pub size: usize,
}Expand description
A detected community in the knowledge graph.
Fields§
§id: usize§members: Vec<String>§size: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Community
impl RefUnwindSafe for Community
impl Send for Community
impl Sync for Community
impl Unpin for Community
impl UnwindSafe for Community
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