#[non_exhaustive]pub struct NetworkFabricConfiguration {
pub edition: Edition,
}
Expand description
Hyperledger Fabric configuration properties for the network.
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.edition: Edition
The edition of Amazon Managed Blockchain that the network uses. For more information, see Amazon Managed Blockchain Pricing.
Implementations§
source§impl NetworkFabricConfiguration
impl NetworkFabricConfiguration
sourcepub fn edition(&self) -> &Edition
pub fn edition(&self) -> &Edition
The edition of Amazon Managed Blockchain that the network uses. For more information, see Amazon Managed Blockchain Pricing.
source§impl NetworkFabricConfiguration
impl NetworkFabricConfiguration
sourcepub fn builder() -> NetworkFabricConfigurationBuilder
pub fn builder() -> NetworkFabricConfigurationBuilder
Creates a new builder-style object to manufacture NetworkFabricConfiguration
.
Trait Implementations§
source§impl Clone for NetworkFabricConfiguration
impl Clone for NetworkFabricConfiguration
source§fn clone(&self) -> NetworkFabricConfiguration
fn clone(&self) -> NetworkFabricConfiguration
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 NetworkFabricConfiguration
impl Debug for NetworkFabricConfiguration
source§impl PartialEq for NetworkFabricConfiguration
impl PartialEq for NetworkFabricConfiguration
source§fn eq(&self, other: &NetworkFabricConfiguration) -> bool
fn eq(&self, other: &NetworkFabricConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NetworkFabricConfiguration
Auto Trait Implementations§
impl Freeze for NetworkFabricConfiguration
impl RefUnwindSafe for NetworkFabricConfiguration
impl Send for NetworkFabricConfiguration
impl Sync for NetworkFabricConfiguration
impl Unpin for NetworkFabricConfiguration
impl UnwindSafe for NetworkFabricConfiguration
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>
Creates a shared type from an unshared type.