pub struct ScreenAddressRequest {
pub idempotency_key: String,
pub address: String,
pub chain: Chain,
}Expand description
Request body for the screenAddress endpoint.
Fields§
§idempotency_key: StringUUID v4 idempotency key.
address: StringBlockchain address to screen.
chain: ChainBlockchain network.
Trait Implementations§
Source§impl Clone for ScreenAddressRequest
impl Clone for ScreenAddressRequest
Source§fn clone(&self) -> ScreenAddressRequest
fn clone(&self) -> ScreenAddressRequest
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 ScreenAddressRequest
impl Debug for ScreenAddressRequest
Auto Trait Implementations§
impl Freeze for ScreenAddressRequest
impl RefUnwindSafe for ScreenAddressRequest
impl Send for ScreenAddressRequest
impl Sync for ScreenAddressRequest
impl Unpin for ScreenAddressRequest
impl UnsafeUnpin for ScreenAddressRequest
impl UnwindSafe for ScreenAddressRequest
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