pub struct MemberFabricConfiguration {
pub admin_password: String,
pub admin_username: String,
}Expand description
Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.
Fields§
§admin_password: StringThe 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 quote(‘), double quote(“), forward slash(/), backward slash(\), @, or a space.
admin_username: StringThe user name for the member's initial administrative user.
Trait Implementations§
Source§impl Clone for MemberFabricConfiguration
impl Clone for MemberFabricConfiguration
Source§fn clone(&self) -> MemberFabricConfiguration
fn clone(&self) -> MemberFabricConfiguration
Returns a duplicate 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 Default for MemberFabricConfiguration
impl Default for MemberFabricConfiguration
Source§fn default() -> MemberFabricConfiguration
fn default() -> MemberFabricConfiguration
Returns the “default value” for a type. Read more
impl StructuralPartialEq for MemberFabricConfiguration
Auto Trait Implementations§
impl Freeze for MemberFabricConfiguration
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