#[non_exhaustive]pub struct MemberFabricConfiguration { /* private fields */ }
Expand description
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.
Implementations§
source§impl MemberFabricConfiguration
impl MemberFabricConfiguration
sourcepub fn admin_username(&self) -> Option<&str>
pub fn admin_username(&self) -> Option<&str>
The user name for the member's initial administrative user.
sourcepub fn admin_password(&self) -> Option<&str>
pub fn admin_password(&self) -> Option<&str>
The password for the member's initial administrative user. The AdminPassword
must be at least eight characters long and no more than 32 characters. It must contain at least one uppercase letter, one lowercase letter, and one digit. It cannot have a single quotation mark (‘), a double quotation marks (“), a forward slash(/), a backward slash(\), @, or a space.
source§impl MemberFabricConfiguration
impl MemberFabricConfiguration
sourcepub fn builder() -> MemberFabricConfigurationBuilder
pub fn builder() -> MemberFabricConfigurationBuilder
Creates a new builder-style object to manufacture MemberFabricConfiguration
.
Trait Implementations§
source§impl Clone for MemberFabricConfiguration
impl Clone for MemberFabricConfiguration
source§fn clone(&self) -> MemberFabricConfiguration
fn clone(&self) -> MemberFabricConfiguration
Returns a copy 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 MemberFabricConfiguration
impl Debug for MemberFabricConfiguration
source§impl PartialEq<MemberFabricConfiguration> for MemberFabricConfiguration
impl PartialEq<MemberFabricConfiguration> for MemberFabricConfiguration
source§fn eq(&self, other: &MemberFabricConfiguration) -> bool
fn eq(&self, other: &MemberFabricConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.