pub struct AddressValidation {
pub is_valid: bool,
pub is_mine: bool,
pub is_script: bool,
}Expand description
Address validation result
Fields§
§is_valid: bool§is_mine: bool§is_script: boolTrait Implementations§
Source§impl Clone for AddressValidation
impl Clone for AddressValidation
Source§fn clone(&self) -> AddressValidation
fn clone(&self) -> AddressValidation
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 AddressValidation
impl Debug for AddressValidation
Auto Trait Implementations§
impl Freeze for AddressValidation
impl RefUnwindSafe for AddressValidation
impl Send for AddressValidation
impl Sync for AddressValidation
impl Unpin for AddressValidation
impl UnwindSafe for AddressValidation
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