[][src]Struct rusoto_managedblockchain::NodeFabricLogPublishingConfiguration

pub struct NodeFabricLogPublishingConfiguration {
    pub chaincode_logs: Option<LogConfigurations>,
    pub peer_logs: Option<LogConfigurations>,
}

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

impl Clone for NodeFabricLogPublishingConfiguration[src]

impl Debug for NodeFabricLogPublishingConfiguration[src]

impl Default for NodeFabricLogPublishingConfiguration[src]

impl<'de> Deserialize<'de> for NodeFabricLogPublishingConfiguration[src]

impl PartialEq<NodeFabricLogPublishingConfiguration> for NodeFabricLogPublishingConfiguration[src]

impl Serialize for NodeFabricLogPublishingConfiguration[src]

impl StructuralPartialEq for NodeFabricLogPublishingConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.