pub struct MemberFabricAttributes {
pub admin_username: Option<String>,
pub ca_endpoint: Option<String>,
}
Expand description
Attributes of Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.
Fields§
§admin_username: Option<String>
The user name for the initial administrator user for the member.
ca_endpoint: Option<String>
The endpoint used to access the member's certificate authority.
Trait Implementations§
Source§impl Clone for MemberFabricAttributes
impl Clone for MemberFabricAttributes
Source§fn clone(&self) -> MemberFabricAttributes
fn clone(&self) -> MemberFabricAttributes
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 MemberFabricAttributes
impl Debug for MemberFabricAttributes
Source§impl Default for MemberFabricAttributes
impl Default for MemberFabricAttributes
Source§fn default() -> MemberFabricAttributes
fn default() -> MemberFabricAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MemberFabricAttributes
impl<'de> Deserialize<'de> for MemberFabricAttributes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MemberFabricAttributes
impl PartialEq for MemberFabricAttributes
impl StructuralPartialEq for MemberFabricAttributes
Auto Trait Implementations§
impl Freeze for MemberFabricAttributes
impl RefUnwindSafe for MemberFabricAttributes
impl Send for MemberFabricAttributes
impl Sync for MemberFabricAttributes
impl Unpin for MemberFabricAttributes
impl UnwindSafe for MemberFabricAttributes
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