pub struct BankAccountBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> BankAccountBuilder<S>
impl<S: State> BankAccountBuilder<S>
Sourcepub fn build(self) -> BankAccountwhere
S: IsComplete,
pub fn build(self) -> BankAccountwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn id(self, value: String) -> BankAccountBuilder<SetId<S>>where
S::Id: IsUnset,
pub fn id(self, value: String) -> BankAccountBuilder<SetId<S>>where
S::Id: IsUnset,
Required.
Sourcepub fn schema(self, value: String) -> BankAccountBuilder<SetSchema<S>>where
S::Schema: IsUnset,
pub fn schema(self, value: String) -> BankAccountBuilder<SetSchema<S>>where
S::Schema: IsUnset,
Sourcepub fn maybe_schema(
self,
value: Option<String>,
) -> BankAccountBuilder<SetSchema<S>>where
S::Schema: IsUnset,
pub fn maybe_schema(
self,
value: Option<String>,
) -> BankAccountBuilder<SetSchema<S>>where
S::Schema: IsUnset,
Sourcepub fn account_number(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAccountNumber<S>>where
S::AccountNumber: IsUnset,
pub fn account_number(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAccountNumber<S>>where
S::AccountNumber: IsUnset,
Sourcepub fn maybe_account_number(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAccountNumber<S>>where
S::AccountNumber: IsUnset,
pub fn maybe_account_number(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAccountNumber<S>>where
S::AccountNumber: IsUnset,
Sourcepub fn account_type(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAccountType<S>>where
S::AccountType: IsUnset,
pub fn account_type(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAccountType<S>>where
S::AccountType: IsUnset,
Sourcepub fn maybe_account_type(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAccountType<S>>where
S::AccountType: IsUnset,
pub fn maybe_account_type(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAccountType<S>>where
S::AccountType: IsUnset,
Sourcepub fn address(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAddress<S>>where
S::Address: IsUnset,
pub fn address(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAddress<S>>where
S::Address: IsUnset,
Sourcepub fn maybe_address(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAddress<S>>where
S::Address: IsUnset,
pub fn maybe_address(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAddress<S>>where
S::Address: IsUnset,
Sourcepub fn address_entity(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAddressEntity<S>>where
S::AddressEntity: IsUnset,
pub fn address_entity(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAddressEntity<S>>where
S::AddressEntity: IsUnset,
Sourcepub fn maybe_address_entity(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAddressEntity<S>>where
S::AddressEntity: IsUnset,
pub fn maybe_address_entity(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAddressEntity<S>>where
S::AddressEntity: IsUnset,
Sourcepub fn aleph_url(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAlephUrl<S>>where
S::AlephUrl: IsUnset,
pub fn aleph_url(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetAlephUrl<S>>where
S::AlephUrl: IsUnset,
Sourcepub fn maybe_aleph_url(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAlephUrl<S>>where
S::AlephUrl: IsUnset,
pub fn maybe_aleph_url(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAlephUrl<S>>where
S::AlephUrl: IsUnset,
Sourcepub fn alias(self, value: impl Into<String>) -> BankAccountBuilder<SetAlias<S>>where
S::Alias: IsUnset,
pub fn alias(self, value: impl Into<String>) -> BankAccountBuilder<SetAlias<S>>where
S::Alias: IsUnset,
Sourcepub fn maybe_alias(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAlias<S>>where
S::Alias: IsUnset,
pub fn maybe_alias(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetAlias<S>>where
S::Alias: IsUnset,
Sourcepub fn amount(self, value: f64) -> BankAccountBuilder<SetAmount<S>>where
S::Amount: IsUnset,
pub fn amount(self, value: f64) -> BankAccountBuilder<SetAmount<S>>where
S::Amount: IsUnset,
Sourcepub fn maybe_amount(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetAmount<S>>where
S::Amount: IsUnset,
pub fn maybe_amount(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetAmount<S>>where
S::Amount: IsUnset,
Sourcepub fn amount_eur(self, value: f64) -> BankAccountBuilder<SetAmountEur<S>>where
S::AmountEur: IsUnset,
pub fn amount_eur(self, value: f64) -> BankAccountBuilder<SetAmountEur<S>>where
S::AmountEur: IsUnset,
Sourcepub fn maybe_amount_eur(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetAmountEur<S>>where
S::AmountEur: IsUnset,
pub fn maybe_amount_eur(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetAmountEur<S>>where
S::AmountEur: IsUnset,
Sourcepub fn amount_usd(self, value: f64) -> BankAccountBuilder<SetAmountUsd<S>>where
S::AmountUsd: IsUnset,
pub fn amount_usd(self, value: f64) -> BankAccountBuilder<SetAmountUsd<S>>where
S::AmountUsd: IsUnset,
Sourcepub fn maybe_amount_usd(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetAmountUsd<S>>where
S::AmountUsd: IsUnset,
pub fn maybe_amount_usd(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetAmountUsd<S>>where
S::AmountUsd: IsUnset,
Sourcepub fn balance(self, value: f64) -> BankAccountBuilder<SetBalance<S>>where
S::Balance: IsUnset,
pub fn balance(self, value: f64) -> BankAccountBuilder<SetBalance<S>>where
S::Balance: IsUnset,
Sourcepub fn maybe_balance(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetBalance<S>>where
S::Balance: IsUnset,
pub fn maybe_balance(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetBalance<S>>where
S::Balance: IsUnset,
Sourcepub fn balance_date(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetBalanceDate<S>>where
S::BalanceDate: IsUnset,
pub fn balance_date(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetBalanceDate<S>>where
S::BalanceDate: IsUnset,
Sourcepub fn maybe_balance_date(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBalanceDate<S>>where
S::BalanceDate: IsUnset,
pub fn maybe_balance_date(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBalanceDate<S>>where
S::BalanceDate: IsUnset,
Sourcepub fn bank(self, value: impl Into<String>) -> BankAccountBuilder<SetBank<S>>where
S::Bank: IsUnset,
pub fn bank(self, value: impl Into<String>) -> BankAccountBuilder<SetBank<S>>where
S::Bank: IsUnset,
Sourcepub fn maybe_bank(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBank<S>>where
S::Bank: IsUnset,
pub fn maybe_bank(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBank<S>>where
S::Bank: IsUnset,
Sourcepub fn bank_address(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetBankAddress<S>>where
S::BankAddress: IsUnset,
pub fn bank_address(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetBankAddress<S>>where
S::BankAddress: IsUnset,
Sourcepub fn maybe_bank_address(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBankAddress<S>>where
S::BankAddress: IsUnset,
pub fn maybe_bank_address(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBankAddress<S>>where
S::BankAddress: IsUnset,
Sourcepub fn bank_name(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetBankName<S>>where
S::BankName: IsUnset,
pub fn bank_name(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetBankName<S>>where
S::BankName: IsUnset,
Sourcepub fn maybe_bank_name(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBankName<S>>where
S::BankName: IsUnset,
pub fn maybe_bank_name(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBankName<S>>where
S::BankName: IsUnset,
Sourcepub fn bic(self, value: impl Into<String>) -> BankAccountBuilder<SetBic<S>>where
S::Bic: IsUnset,
pub fn bic(self, value: impl Into<String>) -> BankAccountBuilder<SetBic<S>>where
S::Bic: IsUnset,
Sourcepub fn maybe_bic(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBic<S>>where
S::Bic: IsUnset,
pub fn maybe_bic(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetBic<S>>where
S::Bic: IsUnset,
Sourcepub fn closing_date(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetClosingDate<S>>where
S::ClosingDate: IsUnset,
pub fn closing_date(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetClosingDate<S>>where
S::ClosingDate: IsUnset,
Sourcepub fn maybe_closing_date(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetClosingDate<S>>where
S::ClosingDate: IsUnset,
pub fn maybe_closing_date(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetClosingDate<S>>where
S::ClosingDate: IsUnset,
Sourcepub fn country(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetCountry<S>>where
S::Country: IsUnset,
pub fn country(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetCountry<S>>where
S::Country: IsUnset,
Sourcepub fn maybe_country(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetCountry<S>>where
S::Country: IsUnset,
pub fn maybe_country(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetCountry<S>>where
S::Country: IsUnset,
Sourcepub fn created_at(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetCreatedAt<S>>where
S::CreatedAt: IsUnset,
pub fn created_at(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetCreatedAt<S>>where
S::CreatedAt: IsUnset,
Sourcepub fn maybe_created_at(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetCreatedAt<S>>where
S::CreatedAt: IsUnset,
pub fn maybe_created_at(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetCreatedAt<S>>where
S::CreatedAt: IsUnset,
Sourcepub fn currency(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetCurrency<S>>where
S::Currency: IsUnset,
pub fn currency(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetCurrency<S>>where
S::Currency: IsUnset,
Sourcepub fn maybe_currency(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetCurrency<S>>where
S::Currency: IsUnset,
pub fn maybe_currency(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetCurrency<S>>where
S::Currency: IsUnset,
Sourcepub fn description(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn description(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetDescription<S>>where
S::Description: IsUnset,
Sourcepub fn maybe_description(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn maybe_description(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetDescription<S>>where
S::Description: IsUnset,
Sourcepub fn iban(self, value: impl Into<String>) -> BankAccountBuilder<SetIban<S>>where
S::Iban: IsUnset,
pub fn iban(self, value: impl Into<String>) -> BankAccountBuilder<SetIban<S>>where
S::Iban: IsUnset,
Sourcepub fn maybe_iban(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetIban<S>>where
S::Iban: IsUnset,
pub fn maybe_iban(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetIban<S>>where
S::Iban: IsUnset,
Sourcepub fn index_text(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetIndexText<S>>where
S::IndexText: IsUnset,
pub fn index_text(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetIndexText<S>>where
S::IndexText: IsUnset,
Sourcepub fn maybe_index_text(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetIndexText<S>>where
S::IndexText: IsUnset,
pub fn maybe_index_text(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetIndexText<S>>where
S::IndexText: IsUnset,
Sourcepub fn keywords(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetKeywords<S>>where
S::Keywords: IsUnset,
pub fn keywords(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetKeywords<S>>where
S::Keywords: IsUnset,
Sourcepub fn maybe_keywords(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetKeywords<S>>where
S::Keywords: IsUnset,
pub fn maybe_keywords(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetKeywords<S>>where
S::Keywords: IsUnset,
Sourcepub fn max_balance(self, value: f64) -> BankAccountBuilder<SetMaxBalance<S>>where
S::MaxBalance: IsUnset,
pub fn max_balance(self, value: f64) -> BankAccountBuilder<SetMaxBalance<S>>where
S::MaxBalance: IsUnset,
Sourcepub fn maybe_max_balance(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetMaxBalance<S>>where
S::MaxBalance: IsUnset,
pub fn maybe_max_balance(
self,
value: Option<f64>,
) -> BankAccountBuilder<SetMaxBalance<S>>where
S::MaxBalance: IsUnset,
Sourcepub fn max_balance_date(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetMaxBalanceDate<S>>where
S::MaxBalanceDate: IsUnset,
pub fn max_balance_date(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetMaxBalanceDate<S>>where
S::MaxBalanceDate: IsUnset,
Sourcepub fn maybe_max_balance_date(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetMaxBalanceDate<S>>where
S::MaxBalanceDate: IsUnset,
pub fn maybe_max_balance_date(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetMaxBalanceDate<S>>where
S::MaxBalanceDate: IsUnset,
Sourcepub fn modified_at(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetModifiedAt<S>>where
S::ModifiedAt: IsUnset,
pub fn modified_at(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetModifiedAt<S>>where
S::ModifiedAt: IsUnset,
Sourcepub fn maybe_modified_at(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetModifiedAt<S>>where
S::ModifiedAt: IsUnset,
pub fn maybe_modified_at(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetModifiedAt<S>>where
S::ModifiedAt: IsUnset,
Sourcepub fn name(self, value: impl Into<String>) -> BankAccountBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(self, value: impl Into<String>) -> BankAccountBuilder<SetName<S>>where
S::Name: IsUnset,
Required.
Property: Name
Sourcepub fn notes(self, value: impl Into<String>) -> BankAccountBuilder<SetNotes<S>>where
S::Notes: IsUnset,
pub fn notes(self, value: impl Into<String>) -> BankAccountBuilder<SetNotes<S>>where
S::Notes: IsUnset,
Sourcepub fn maybe_notes(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetNotes<S>>where
S::Notes: IsUnset,
pub fn maybe_notes(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetNotes<S>>where
S::Notes: IsUnset,
Sourcepub fn opening_date(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetOpeningDate<S>>where
S::OpeningDate: IsUnset,
pub fn opening_date(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetOpeningDate<S>>where
S::OpeningDate: IsUnset,
Sourcepub fn maybe_opening_date(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetOpeningDate<S>>where
S::OpeningDate: IsUnset,
pub fn maybe_opening_date(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetOpeningDate<S>>where
S::OpeningDate: IsUnset,
Sourcepub fn previous_name(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetPreviousName<S>>where
S::PreviousName: IsUnset,
pub fn previous_name(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetPreviousName<S>>where
S::PreviousName: IsUnset,
Sourcepub fn maybe_previous_name(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetPreviousName<S>>where
S::PreviousName: IsUnset,
pub fn maybe_previous_name(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetPreviousName<S>>where
S::PreviousName: IsUnset,
Sourcepub fn program(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetProgram<S>>where
S::Program: IsUnset,
pub fn program(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetProgram<S>>where
S::Program: IsUnset,
Sourcepub fn maybe_program(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetProgram<S>>where
S::Program: IsUnset,
pub fn maybe_program(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetProgram<S>>where
S::Program: IsUnset,
Sourcepub fn program_id(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetProgramId<S>>where
S::ProgramId: IsUnset,
pub fn program_id(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetProgramId<S>>where
S::ProgramId: IsUnset,
Sourcepub fn maybe_program_id(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetProgramId<S>>where
S::ProgramId: IsUnset,
pub fn maybe_program_id(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetProgramId<S>>where
S::ProgramId: IsUnset,
Sourcepub fn proof(self, value: impl Into<String>) -> BankAccountBuilder<SetProof<S>>where
S::Proof: IsUnset,
pub fn proof(self, value: impl Into<String>) -> BankAccountBuilder<SetProof<S>>where
S::Proof: IsUnset,
Sourcepub fn maybe_proof(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetProof<S>>where
S::Proof: IsUnset,
pub fn maybe_proof(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetProof<S>>where
S::Proof: IsUnset,
Sourcepub fn publisher(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetPublisher<S>>where
S::Publisher: IsUnset,
pub fn publisher(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetPublisher<S>>where
S::Publisher: IsUnset,
Sourcepub fn maybe_publisher(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetPublisher<S>>where
S::Publisher: IsUnset,
pub fn maybe_publisher(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetPublisher<S>>where
S::Publisher: IsUnset,
Sourcepub fn publisher_url(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetPublisherUrl<S>>where
S::PublisherUrl: IsUnset,
pub fn publisher_url(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetPublisherUrl<S>>where
S::PublisherUrl: IsUnset,
Sourcepub fn maybe_publisher_url(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetPublisherUrl<S>>where
S::PublisherUrl: IsUnset,
pub fn maybe_publisher_url(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetPublisherUrl<S>>where
S::PublisherUrl: IsUnset,
Sourcepub fn retrieved_at(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetRetrievedAt<S>>where
S::RetrievedAt: IsUnset,
pub fn retrieved_at(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetRetrievedAt<S>>where
S::RetrievedAt: IsUnset,
Sourcepub fn maybe_retrieved_at(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetRetrievedAt<S>>where
S::RetrievedAt: IsUnset,
pub fn maybe_retrieved_at(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetRetrievedAt<S>>where
S::RetrievedAt: IsUnset,
Sourcepub fn source_url(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetSourceUrl<S>>where
S::SourceUrl: IsUnset,
pub fn source_url(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetSourceUrl<S>>where
S::SourceUrl: IsUnset,
Sourcepub fn maybe_source_url(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetSourceUrl<S>>where
S::SourceUrl: IsUnset,
pub fn maybe_source_url(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetSourceUrl<S>>where
S::SourceUrl: IsUnset,
Sourcepub fn summary(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetSummary<S>>where
S::Summary: IsUnset,
pub fn summary(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetSummary<S>>where
S::Summary: IsUnset,
Sourcepub fn maybe_summary(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetSummary<S>>where
S::Summary: IsUnset,
pub fn maybe_summary(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetSummary<S>>where
S::Summary: IsUnset,
Sourcepub fn topics(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetTopics<S>>where
S::Topics: IsUnset,
pub fn topics(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetTopics<S>>where
S::Topics: IsUnset,
Sourcepub fn maybe_topics(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetTopics<S>>where
S::Topics: IsUnset,
pub fn maybe_topics(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetTopics<S>>where
S::Topics: IsUnset,
Sourcepub fn weak_alias(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetWeakAlias<S>>where
S::WeakAlias: IsUnset,
pub fn weak_alias(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetWeakAlias<S>>where
S::WeakAlias: IsUnset,
Sourcepub fn maybe_weak_alias(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetWeakAlias<S>>where
S::WeakAlias: IsUnset,
pub fn maybe_weak_alias(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetWeakAlias<S>>where
S::WeakAlias: IsUnset,
Sourcepub fn wikidata_id(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetWikidataId<S>>where
S::WikidataId: IsUnset,
pub fn wikidata_id(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetWikidataId<S>>where
S::WikidataId: IsUnset,
Sourcepub fn maybe_wikidata_id(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetWikidataId<S>>where
S::WikidataId: IsUnset,
pub fn maybe_wikidata_id(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetWikidataId<S>>where
S::WikidataId: IsUnset,
Sourcepub fn wikipedia_url(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetWikipediaUrl<S>>where
S::WikipediaUrl: IsUnset,
pub fn wikipedia_url(
self,
value: impl Into<String>,
) -> BankAccountBuilder<SetWikipediaUrl<S>>where
S::WikipediaUrl: IsUnset,
Sourcepub fn maybe_wikipedia_url(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetWikipediaUrl<S>>where
S::WikipediaUrl: IsUnset,
pub fn maybe_wikipedia_url(
self,
value: Option<impl Into<String>>,
) -> BankAccountBuilder<SetWikipediaUrl<S>>where
S::WikipediaUrl: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for BankAccountBuilder<S>
impl<S> RefUnwindSafe for BankAccountBuilder<S>
impl<S> Send for BankAccountBuilder<S>
impl<S> Sync for BankAccountBuilder<S>
impl<S> Unpin for BankAccountBuilder<S>
impl<S> UnsafeUnpin for BankAccountBuilder<S>
impl<S> UnwindSafe for BankAccountBuilder<S>
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