pub struct AddressStatusEvent {
pub address: String,
pub scripthash: String,
pub status: Option<String>,
}Expand description
Address status change event.
Fields§
§address: StringThe address that changed
scripthash: StringThe scripthash
status: Option<String>New status hash (null if no history)
Trait Implementations§
Source§impl Clone for AddressStatusEvent
impl Clone for AddressStatusEvent
Source§fn clone(&self) -> AddressStatusEvent
fn clone(&self) -> AddressStatusEvent
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 moreSource§impl Debug for AddressStatusEvent
impl Debug for AddressStatusEvent
Source§impl<'de> Deserialize<'de> for AddressStatusEvent
impl<'de> Deserialize<'de> for AddressStatusEvent
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 AddressStatusEvent
impl RefUnwindSafe for AddressStatusEvent
impl Send for AddressStatusEvent
impl Sync for AddressStatusEvent
impl Unpin for AddressStatusEvent
impl UnwindSafe for AddressStatusEvent
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