#[non_exhaustive]pub struct NodeFabricAttributes {
pub peer_endpoint: Option<String>,
pub peer_event_endpoint: Option<String>,
}
Expand description
Attributes of Hyperledger Fabric for a peer node on a Hyperledger Fabric network on Managed Blockchain.
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.peer_endpoint: Option<String>
The endpoint that identifies the peer node for all services except peer channel-based event services.
peer_event_endpoint: Option<String>
The endpoint that identifies the peer node for peer channel-based event services.
Implementations§
source§impl NodeFabricAttributes
impl NodeFabricAttributes
sourcepub fn peer_endpoint(&self) -> Option<&str>
pub fn peer_endpoint(&self) -> Option<&str>
The endpoint that identifies the peer node for all services except peer channel-based event services.
sourcepub fn peer_event_endpoint(&self) -> Option<&str>
pub fn peer_event_endpoint(&self) -> Option<&str>
The endpoint that identifies the peer node for peer channel-based event services.
source§impl NodeFabricAttributes
impl NodeFabricAttributes
sourcepub fn builder() -> NodeFabricAttributesBuilder
pub fn builder() -> NodeFabricAttributesBuilder
Creates a new builder-style object to manufacture NodeFabricAttributes
.
Trait Implementations§
source§impl Clone for NodeFabricAttributes
impl Clone for NodeFabricAttributes
source§fn clone(&self) -> NodeFabricAttributes
fn clone(&self) -> NodeFabricAttributes
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 NodeFabricAttributes
impl Debug for NodeFabricAttributes
source§impl PartialEq for NodeFabricAttributes
impl PartialEq for NodeFabricAttributes
source§fn eq(&self, other: &NodeFabricAttributes) -> bool
fn eq(&self, other: &NodeFabricAttributes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NodeFabricAttributes
Auto Trait Implementations§
impl Freeze for NodeFabricAttributes
impl RefUnwindSafe for NodeFabricAttributes
impl Send for NodeFabricAttributes
impl Sync for NodeFabricAttributes
impl Unpin for NodeFabricAttributes
impl UnwindSafe for NodeFabricAttributes
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.