pub struct RejectRecord {
pub proposal_id: String,
pub sender: String,
pub reason: String,
pub terminal: bool,
}Fields§
§proposal_id: String§sender: String§reason: String§terminal: boolTrait Implementations§
Source§impl Clone for RejectRecord
impl Clone for RejectRecord
Source§fn clone(&self) -> RejectRecord
fn clone(&self) -> RejectRecord
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 RejectRecord
impl Debug for RejectRecord
Source§impl<'de> Deserialize<'de> for RejectRecord
impl<'de> Deserialize<'de> for RejectRecord
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 RejectRecord
impl RefUnwindSafe for RejectRecord
impl Send for RejectRecord
impl Sync for RejectRecord
impl Unpin for RejectRecord
impl UnsafeUnpin for RejectRecord
impl UnwindSafe for RejectRecord
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