Struct aws_sdk_managedblockchainquery::types::builders::BatchGetTokenBalanceInputItemBuilder
source · #[non_exhaustive]pub struct BatchGetTokenBalanceInputItemBuilder { /* private fields */ }
Expand description
A builder for BatchGetTokenBalanceInputItem
.
Implementations§
source§impl BatchGetTokenBalanceInputItemBuilder
impl BatchGetTokenBalanceInputItemBuilder
sourcepub fn token_identifier(self, input: TokenIdentifier) -> Self
pub fn token_identifier(self, input: TokenIdentifier) -> Self
The container for the identifier for the token including the unique token ID and its blockchain network.
Only the native tokens BTC and ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
sourcepub fn set_token_identifier(self, input: Option<TokenIdentifier>) -> Self
pub fn set_token_identifier(self, input: Option<TokenIdentifier>) -> Self
The container for the identifier for the token including the unique token ID and its blockchain network.
Only the native tokens BTC and ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
sourcepub fn get_token_identifier(&self) -> &Option<TokenIdentifier>
pub fn get_token_identifier(&self) -> &Option<TokenIdentifier>
The container for the identifier for the token including the unique token ID and its blockchain network.
Only the native tokens BTC and ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
sourcepub fn owner_identifier(self, input: OwnerIdentifier) -> Self
pub fn owner_identifier(self, input: OwnerIdentifier) -> Self
The container for the owner identifier.
This field is required.sourcepub fn set_owner_identifier(self, input: Option<OwnerIdentifier>) -> Self
pub fn set_owner_identifier(self, input: Option<OwnerIdentifier>) -> Self
The container for the owner identifier.
sourcepub fn get_owner_identifier(&self) -> &Option<OwnerIdentifier>
pub fn get_owner_identifier(&self) -> &Option<OwnerIdentifier>
The container for the owner identifier.
sourcepub fn at_blockchain_instant(self, input: BlockchainInstant) -> Self
pub fn at_blockchain_instant(self, input: BlockchainInstant) -> Self
The container for time.
sourcepub fn set_at_blockchain_instant(self, input: Option<BlockchainInstant>) -> Self
pub fn set_at_blockchain_instant(self, input: Option<BlockchainInstant>) -> Self
The container for time.
sourcepub fn get_at_blockchain_instant(&self) -> &Option<BlockchainInstant>
pub fn get_at_blockchain_instant(&self) -> &Option<BlockchainInstant>
The container for time.
sourcepub fn build(self) -> BatchGetTokenBalanceInputItem
pub fn build(self) -> BatchGetTokenBalanceInputItem
Consumes the builder and constructs a BatchGetTokenBalanceInputItem
.
Trait Implementations§
source§impl Clone for BatchGetTokenBalanceInputItemBuilder
impl Clone for BatchGetTokenBalanceInputItemBuilder
source§fn clone(&self) -> BatchGetTokenBalanceInputItemBuilder
fn clone(&self) -> BatchGetTokenBalanceInputItemBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchGetTokenBalanceInputItemBuilder
impl Default for BatchGetTokenBalanceInputItemBuilder
source§fn default() -> BatchGetTokenBalanceInputItemBuilder
fn default() -> BatchGetTokenBalanceInputItemBuilder
source§impl PartialEq for BatchGetTokenBalanceInputItemBuilder
impl PartialEq for BatchGetTokenBalanceInputItemBuilder
source§fn eq(&self, other: &BatchGetTokenBalanceInputItemBuilder) -> bool
fn eq(&self, other: &BatchGetTokenBalanceInputItemBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetTokenBalanceInputItemBuilder
Auto Trait Implementations§
impl Freeze for BatchGetTokenBalanceInputItemBuilder
impl RefUnwindSafe for BatchGetTokenBalanceInputItemBuilder
impl Send for BatchGetTokenBalanceInputItemBuilder
impl Sync for BatchGetTokenBalanceInputItemBuilder
impl Unpin for BatchGetTokenBalanceInputItemBuilder
impl UnwindSafe for BatchGetTokenBalanceInputItemBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more