pub struct AddressWatch {
pub id: String,
pub network: AddressWatchNetwork,
pub address: String,
pub name: Option<String>,
pub external_id: Option<String>,
pub tags: Vec<String>,
pub status: String,
pub date_created: String,
pub date_deleted: Option<String>,
}Fields§
§id: String§network: AddressWatchNetwork§address: String§name: Option<String>§external_id: Option<String>§status: String§date_created: String§date_deleted: Option<String>Trait Implementations§
Source§impl Clone for AddressWatch
impl Clone for AddressWatch
Source§fn clone(&self) -> AddressWatch
fn clone(&self) -> AddressWatch
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 AddressWatch
impl Debug for AddressWatch
Source§impl<'de> Deserialize<'de> for AddressWatch
impl<'de> Deserialize<'de> for AddressWatch
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 AddressWatch
impl RefUnwindSafe for AddressWatch
impl Send for AddressWatch
impl Sync for AddressWatch
impl Unpin for AddressWatch
impl UnsafeUnpin for AddressWatch
impl UnwindSafe for AddressWatch
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