#[non_exhaustive]pub struct TokenBalanceBuilder { /* private fields */ }
Expand description
A builder for TokenBalance
.
Implementations§
source§impl TokenBalanceBuilder
impl TokenBalanceBuilder
sourcepub fn owner_identifier(self, input: OwnerIdentifier) -> Self
pub fn owner_identifier(self, input: OwnerIdentifier) -> Self
The container for the identifier of the owner.
sourcepub fn set_owner_identifier(self, input: Option<OwnerIdentifier>) -> Self
pub fn set_owner_identifier(self, input: Option<OwnerIdentifier>) -> Self
The container for the identifier of the owner.
sourcepub fn get_owner_identifier(&self) -> &Option<OwnerIdentifier>
pub fn get_owner_identifier(&self) -> &Option<OwnerIdentifier>
The container for the identifier of the owner.
sourcepub fn token_identifier(self, input: TokenIdentifier) -> Self
pub fn token_identifier(self, input: TokenIdentifier) -> Self
The identifier for the token, including the unique token ID and its blockchain network.
sourcepub fn set_token_identifier(self, input: Option<TokenIdentifier>) -> Self
pub fn set_token_identifier(self, input: Option<TokenIdentifier>) -> Self
The identifier for the token, including the unique token ID and its blockchain network.
sourcepub fn get_token_identifier(&self) -> &Option<TokenIdentifier>
pub fn get_token_identifier(&self) -> &Option<TokenIdentifier>
The identifier for the token, including the unique token ID and its blockchain network.
sourcepub fn balance(self, input: impl Into<String>) -> Self
pub fn balance(self, input: impl Into<String>) -> Self
The container of the token balance.
This field is required.sourcepub fn set_balance(self, input: Option<String>) -> Self
pub fn set_balance(self, input: Option<String>) -> Self
The container of the token balance.
sourcepub fn get_balance(&self) -> &Option<String>
pub fn get_balance(&self) -> &Option<String>
The container of the token balance.
sourcepub fn at_blockchain_instant(self, input: BlockchainInstant) -> Self
pub fn at_blockchain_instant(self, input: BlockchainInstant) -> Self
The time for when the TokenBalance is requested or the current time if a time is not provided in the request.
This time will only be recorded up to the second.
sourcepub fn set_at_blockchain_instant(self, input: Option<BlockchainInstant>) -> Self
pub fn set_at_blockchain_instant(self, input: Option<BlockchainInstant>) -> Self
The time for when the TokenBalance is requested or the current time if a time is not provided in the request.
This time will only be recorded up to the second.
sourcepub fn get_at_blockchain_instant(&self) -> &Option<BlockchainInstant>
pub fn get_at_blockchain_instant(&self) -> &Option<BlockchainInstant>
The time for when the TokenBalance is requested or the current time if a time is not provided in the request.
This time will only be recorded up to the second.
sourcepub fn last_updated_time(self, input: BlockchainInstant) -> Self
pub fn last_updated_time(self, input: BlockchainInstant) -> Self
The Timestamp
of the last transaction at which the balance for the token in the wallet was updated.
sourcepub fn set_last_updated_time(self, input: Option<BlockchainInstant>) -> Self
pub fn set_last_updated_time(self, input: Option<BlockchainInstant>) -> Self
The Timestamp
of the last transaction at which the balance for the token in the wallet was updated.
sourcepub fn get_last_updated_time(&self) -> &Option<BlockchainInstant>
pub fn get_last_updated_time(&self) -> &Option<BlockchainInstant>
The Timestamp
of the last transaction at which the balance for the token in the wallet was updated.
sourcepub fn build(self) -> Result<TokenBalance, BuildError>
pub fn build(self) -> Result<TokenBalance, BuildError>
Consumes the builder and constructs a TokenBalance
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for TokenBalanceBuilder
impl Clone for TokenBalanceBuilder
source§fn clone(&self) -> TokenBalanceBuilder
fn clone(&self) -> TokenBalanceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TokenBalanceBuilder
impl Debug for TokenBalanceBuilder
source§impl Default for TokenBalanceBuilder
impl Default for TokenBalanceBuilder
source§fn default() -> TokenBalanceBuilder
fn default() -> TokenBalanceBuilder
source§impl PartialEq for TokenBalanceBuilder
impl PartialEq for TokenBalanceBuilder
source§fn eq(&self, other: &TokenBalanceBuilder) -> bool
fn eq(&self, other: &TokenBalanceBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TokenBalanceBuilder
Auto Trait Implementations§
impl Freeze for TokenBalanceBuilder
impl RefUnwindSafe for TokenBalanceBuilder
impl Send for TokenBalanceBuilder
impl Sync for TokenBalanceBuilder
impl Unpin for TokenBalanceBuilder
impl UnwindSafe for TokenBalanceBuilder
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