#[non_exhaustive]pub struct MemberFrameworkConfiguration {
pub fabric: Option<MemberFabricConfiguration>,
}
Expand description
Configuration properties relevant to a member for the blockchain framework that the Managed Blockchain network uses.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.fabric: Option<MemberFabricConfiguration>
Attributes of Hyperledger Fabric for a member on a Managed Blockchain network that uses Hyperledger Fabric.
Implementations§
source§impl MemberFrameworkConfiguration
impl MemberFrameworkConfiguration
sourcepub fn fabric(&self) -> Option<&MemberFabricConfiguration>
pub fn fabric(&self) -> Option<&MemberFabricConfiguration>
Attributes of Hyperledger Fabric for a member on a Managed Blockchain network that uses Hyperledger Fabric.
source§impl MemberFrameworkConfiguration
impl MemberFrameworkConfiguration
sourcepub fn builder() -> MemberFrameworkConfigurationBuilder
pub fn builder() -> MemberFrameworkConfigurationBuilder
Creates a new builder-style object to manufacture MemberFrameworkConfiguration
.
Trait Implementations§
source§impl Clone for MemberFrameworkConfiguration
impl Clone for MemberFrameworkConfiguration
source§fn clone(&self) -> MemberFrameworkConfiguration
fn clone(&self) -> MemberFrameworkConfiguration
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 MemberFrameworkConfiguration
impl Debug for MemberFrameworkConfiguration
source§impl PartialEq for MemberFrameworkConfiguration
impl PartialEq for MemberFrameworkConfiguration
source§fn eq(&self, other: &MemberFrameworkConfiguration) -> bool
fn eq(&self, other: &MemberFrameworkConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MemberFrameworkConfiguration
Auto Trait Implementations§
impl Freeze for MemberFrameworkConfiguration
impl RefUnwindSafe for MemberFrameworkConfiguration
impl Send for MemberFrameworkConfiguration
impl Sync for MemberFrameworkConfiguration
impl Unpin for MemberFrameworkConfiguration
impl UnwindSafe for MemberFrameworkConfiguration
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.