#[non_exhaustive]pub struct MemberFabricConfiguration { /* private fields */ }
Expand description
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is 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 8 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 ==
.impl StructuralPartialEq for MemberFabricConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for MemberFabricConfiguration
impl Send for MemberFabricConfiguration
impl Sync for MemberFabricConfiguration
impl Unpin for MemberFabricConfiguration
impl UnwindSafe for MemberFabricConfiguration
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