pub struct ConsensusStatement {
pub stakeholder_id: StakeholderId,
pub position: String,
pub supporting_arguments: Vec<String>,
pub concessions: Vec<String>,
}Fields§
§stakeholder_id: StakeholderId§position: String§supporting_arguments: Vec<String>§concessions: Vec<String>Trait Implementations§
Source§impl Clone for ConsensusStatement
impl Clone for ConsensusStatement
Source§fn clone(&self) -> ConsensusStatement
fn clone(&self) -> ConsensusStatement
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 ConsensusStatement
impl Debug for ConsensusStatement
Source§impl<'de> Deserialize<'de> for ConsensusStatement
impl<'de> Deserialize<'de> for ConsensusStatement
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 ConsensusStatement
impl RefUnwindSafe for ConsensusStatement
impl Send for ConsensusStatement
impl Sync for ConsensusStatement
impl Unpin for ConsensusStatement
impl UnsafeUnpin for ConsensusStatement
impl UnwindSafe for ConsensusStatement
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