pub struct NetworkFrameworkConfiguration {
pub fabric: Option<NetworkFabricConfiguration>,
}
Expand description
Configuration properties relevant to the network for the blockchain framework that the network uses.
Fields§
§fabric: Option<NetworkFabricConfiguration>
Hyperledger Fabric configuration properties for a Managed Blockchain network that uses Hyperledger Fabric.
Trait Implementations§
Source§impl Clone for NetworkFrameworkConfiguration
impl Clone for NetworkFrameworkConfiguration
Source§fn clone(&self) -> NetworkFrameworkConfiguration
fn clone(&self) -> NetworkFrameworkConfiguration
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 Default for NetworkFrameworkConfiguration
impl Default for NetworkFrameworkConfiguration
Source§fn default() -> NetworkFrameworkConfiguration
fn default() -> NetworkFrameworkConfiguration
Returns the “default value” for a type. Read more
Source§impl PartialEq for NetworkFrameworkConfiguration
impl PartialEq for NetworkFrameworkConfiguration
Source§fn eq(&self, other: &NetworkFrameworkConfiguration) -> bool
fn eq(&self, other: &NetworkFrameworkConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NetworkFrameworkConfiguration
Auto Trait Implementations§
impl Freeze for NetworkFrameworkConfiguration
impl RefUnwindSafe for NetworkFrameworkConfiguration
impl Send for NetworkFrameworkConfiguration
impl Sync for NetworkFrameworkConfiguration
impl Unpin for NetworkFrameworkConfiguration
impl UnwindSafe for NetworkFrameworkConfiguration
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