pub struct NodeFabricLogPublishingConfiguration {
pub chaincode_logs: Option<LogConfigurations>,
pub peer_logs: Option<LogConfigurations>,
}Expand description
Configuration properties for logging events associated with a peer node owned by a member in a Managed Blockchain network.
Fields§
§chaincode_logs: Option<LogConfigurations>Configuration properties for logging events associated with chaincode execution on a peer node. Chaincode logs contain the results of instantiating, invoking, and querying the chaincode. A peer can run multiple instances of chaincode. When enabled, a log stream is created for all chaincodes, with an individual log stream for each chaincode.
peer_logs: Option<LogConfigurations>Configuration properties for a peer node log. Peer node logs contain messages generated when your client submits transaction proposals to peer nodes, requests to join channels, enrolls an admin peer, and lists the chaincode instances on a peer node.
Trait Implementations§
Source§impl Clone for NodeFabricLogPublishingConfiguration
impl Clone for NodeFabricLogPublishingConfiguration
Source§fn clone(&self) -> NodeFabricLogPublishingConfiguration
fn clone(&self) -> NodeFabricLogPublishingConfiguration
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 Default for NodeFabricLogPublishingConfiguration
impl Default for NodeFabricLogPublishingConfiguration
Source§fn default() -> NodeFabricLogPublishingConfiguration
fn default() -> NodeFabricLogPublishingConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeFabricLogPublishingConfiguration
impl<'de> Deserialize<'de> for NodeFabricLogPublishingConfiguration
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 NodeFabricLogPublishingConfiguration
impl PartialEq for NodeFabricLogPublishingConfiguration
Source§fn eq(&self, other: &NodeFabricLogPublishingConfiguration) -> bool
fn eq(&self, other: &NodeFabricLogPublishingConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeFabricLogPublishingConfiguration
Auto Trait Implementations§
impl Freeze for NodeFabricLogPublishingConfiguration
impl RefUnwindSafe for NodeFabricLogPublishingConfiguration
impl Send for NodeFabricLogPublishingConfiguration
impl Sync for NodeFabricLogPublishingConfiguration
impl Unpin for NodeFabricLogPublishingConfiguration
impl UnwindSafe for NodeFabricLogPublishingConfiguration
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