pub struct UncertainEdge {
pub from: String,
pub to: String,
pub kind: UncertainEdgeKind,
pub confidence: f32,
pub reason: String,
}Expand description
An edge that might exist at runtime but cannot be proven statically
Fields§
§from: String§to: String§kind: UncertainEdgeKind§confidence: f32§reason: StringTrait Implementations§
Source§impl Clone for UncertainEdge
impl Clone for UncertainEdge
Source§fn clone(&self) -> UncertainEdge
fn clone(&self) -> UncertainEdge
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 UncertainEdge
impl RefUnwindSafe for UncertainEdge
impl Send for UncertainEdge
impl Sync for UncertainEdge
impl Unpin for UncertainEdge
impl UnsafeUnpin for UncertainEdge
impl UnwindSafe for UncertainEdge
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