pub struct LinkProposal {
pub left: u32,
pub right: u32,
pub evidence: String,
pub settled: bool,
pub projection: ProjectionHint,
}Fields§
§left: u32§right: u32§evidence: String§settled: bool§projection: ProjectionHintTrait Implementations§
Source§impl Clone for LinkProposal
impl Clone for LinkProposal
Source§fn clone(&self) -> LinkProposal
fn clone(&self) -> LinkProposal
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinkProposal
impl Debug for LinkProposal
Source§impl<'de> Deserialize<'de> for LinkProposal
impl<'de> Deserialize<'de> for LinkProposal
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 LinkProposal
impl RefUnwindSafe for LinkProposal
impl Send for LinkProposal
impl Sync for LinkProposal
impl Unpin for LinkProposal
impl UnsafeUnpin for LinkProposal
impl UnwindSafe for LinkProposal
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