pub struct BridgeEntity {
pub entity_name: String,
pub frontiers: Vec<String>,
pub findings_per_frontier: HashMap<String, Vec<BridgeFinding>>,
pub total_findings: usize,
pub breadth: usize,
pub pubmed_count: Option<u64>,
pub tension: Option<String>,
}Expand description
A bridge entity — appears in findings from 2+ different source frontiers.
Fields§
§entity_name: String§frontiers: Vec<String>§findings_per_frontier: HashMap<String, Vec<BridgeFinding>>§total_findings: usize§breadth: usize§pubmed_count: Option<u64>§tension: Option<String>Auto Trait Implementations§
impl Freeze for BridgeEntity
impl RefUnwindSafe for BridgeEntity
impl Send for BridgeEntity
impl Sync for BridgeEntity
impl Unpin for BridgeEntity
impl UnsafeUnpin for BridgeEntity
impl UnwindSafe for BridgeEntity
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