pub struct LinkRef {
pub index: usize,
pub left: NodeId,
pub right: NodeId,
pub evidence: String,
pub proposer: String,
pub priority: u32,
pub settled: bool,
pub projection: ProjectionHint,
}Fields§
§index: usize§left: NodeId§right: NodeId§evidence: String§proposer: String§priority: u32§settled: bool§projection: ProjectionHintTrait Implementations§
Source§impl<'de> Deserialize<'de> for LinkRef
impl<'de> Deserialize<'de> for LinkRef
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
Auto Trait Implementations§
impl Freeze for LinkRef
impl RefUnwindSafe for LinkRef
impl Send for LinkRef
impl Sync for LinkRef
impl Unpin for LinkRef
impl UnsafeUnpin for LinkRef
impl UnwindSafe for LinkRef
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