pub struct ReviewActionResult {
pub txid: TXIDHexString,
pub status: ReviewActionResultStatus,
pub competing_txs: Option<Vec<String>>,
pub competing_beef: Option<Vec<u8>>,
}Expand description
Result of reviewing a non-delayed broadcast action.
Fields§
§txid: TXIDHexString§status: ReviewActionResultStatus§competing_txs: Option<Vec<String>>§competing_beef: Option<Vec<u8>>Trait Implementations§
Source§impl Clone for ReviewActionResult
impl Clone for ReviewActionResult
Source§fn clone(&self) -> ReviewActionResult
fn clone(&self) -> ReviewActionResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ReviewActionResult
impl RefUnwindSafe for ReviewActionResult
impl Send for ReviewActionResult
impl Sync for ReviewActionResult
impl Unpin for ReviewActionResult
impl UnsafeUnpin for ReviewActionResult
impl UnwindSafe for ReviewActionResult
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