pub struct BlockchainProviderIdentityBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> BlockchainProviderIdentityBuilder<S>
impl<S: State> BlockchainProviderIdentityBuilder<S>
Sourcepub fn build(self) -> BlockchainProviderIdentitywhere
S: IsComplete,
pub fn build(self) -> BlockchainProviderIdentitywhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn provider_id(
self,
value: String,
) -> BlockchainProviderIdentityBuilder<SetProviderId<S>>where
S::ProviderId: IsUnset,
pub fn provider_id(
self,
value: String,
) -> BlockchainProviderIdentityBuilder<SetProviderId<S>>where
S::ProviderId: IsUnset,
Required.
Stable local provider identifier.
Sourcepub fn operator_id(
self,
value: String,
) -> BlockchainProviderIdentityBuilder<SetOperatorId<S>>where
S::OperatorId: IsUnset,
pub fn operator_id(
self,
value: String,
) -> BlockchainProviderIdentityBuilder<SetOperatorId<S>>where
S::OperatorId: IsUnset,
Required.
Stable local operator identifier.
Sourcepub fn failure_domain_ids(
self,
value: Vec<String>,
) -> BlockchainProviderIdentityBuilder<SetFailureDomainIds<S>>where
S::FailureDomainIds: IsUnset,
pub fn failure_domain_ids(
self,
value: Vec<String>,
) -> BlockchainProviderIdentityBuilder<SetFailureDomainIds<S>>where
S::FailureDomainIds: IsUnset,
Required.
Opaque identifiers for every known shared infrastructure failure domain.
Auto Trait Implementations§
impl<S> Freeze for BlockchainProviderIdentityBuilder<S>
impl<S> RefUnwindSafe for BlockchainProviderIdentityBuilder<S>
impl<S> Send for BlockchainProviderIdentityBuilder<S>
impl<S> Sync for BlockchainProviderIdentityBuilder<S>
impl<S> Unpin for BlockchainProviderIdentityBuilder<S>
impl<S> UnsafeUnpin for BlockchainProviderIdentityBuilder<S>
impl<S> UnwindSafe for BlockchainProviderIdentityBuilder<S>
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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> ⓘ
Converts
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> ⓘ
Converts
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