#[non_exhaustive]pub struct MemberFabricConfiguration {
pub admin_username: Option<String>,
pub admin_password: Option<String>,
}Expand description
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.admin_username: Option<String>The user name for the member's initial administrative user.
admin_password: Option<String>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.
Implementations
sourceimpl 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.
sourceimpl MemberFabricConfiguration
impl MemberFabricConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MemberFabricConfiguration.
Trait Implementations
sourceimpl Clone for MemberFabricConfiguration
impl Clone for MemberFabricConfiguration
sourcefn clone(&self) -> MemberFabricConfiguration
fn clone(&self) -> MemberFabricConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for MemberFabricConfiguration
impl Debug for MemberFabricConfiguration
sourceimpl PartialEq<MemberFabricConfiguration> for MemberFabricConfiguration
impl PartialEq<MemberFabricConfiguration> for MemberFabricConfiguration
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &MemberFabricConfiguration) -> bool
fn ne(&self, other: &MemberFabricConfiguration) -> bool
This method tests for !=.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more