Enum libp2p::gossipsub::error::PublishError [−][src]
pub enum PublishError { Duplicate, SigningError(SigningError), InsufficientPeers, MessageTooLarge, TransformFailed(Error), }
Error associated with publishing a gossipsub message.
Variants
This message has already been published.
SigningError(SigningError)
An error occurred whilst signing the message.
There were no peers to send this message to.
The overall message was too large. This could be due to excessive topics or an excessive message size.
TransformFailed(Error)
The compression algorithm failed.
Trait Implementations
impl From<Error> for PublishError
[src]
impl From<Error> for PublishError
[src]pub fn from(error: Error) -> PublishError
[src]
impl From<SigningError> for PublishError
[src]
impl From<SigningError> for PublishError
[src]