pub struct BridgeRef {
pub frontier: String,
pub finding_id: String,
pub assertion_text: String,
pub confidence: f64,
pub direction: Option<String>,
}Fields§
§frontier: StringHuman label of the frontier this finding belongs to.
finding_id: Stringvf_<id>.
assertion_text: StringSnapshot of the assertion text at derivation time. Lets the bridge survive a frontier rewrite (the bridge captures what was true when it was derived).
confidence: f64§direction: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BridgeRef
impl<'de> Deserialize<'de> for BridgeRef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for BridgeRef
Auto Trait Implementations§
impl Freeze for BridgeRef
impl RefUnwindSafe for BridgeRef
impl Send for BridgeRef
impl Sync for BridgeRef
impl Unpin for BridgeRef
impl UnsafeUnpin for BridgeRef
impl UnwindSafe for BridgeRef
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