Enum tetsy_libp2p_gossipsub::ValidationMode[][src]

pub enum ValidationMode {
    Strict,
    Permissive,
    Anonymous,
    None,
}

The types of message validation that can be employed by gossipsub.

Variants

Strict

This is the default setting. This requires the message author to be a valid PeerId and to be present as well as the sequence number. All messages must have valid signatures.

NOTE: This setting will reject messages from nodes using crate::behaviour::MessageAuthenticity::Anonymous and all messages that do not have signatures.

Permissive

This setting permits messages that have no author, sequence number or signature. If any of these fields exist in the message these are validated.

Anonymous

This setting requires the author, sequence number and signature fields of a message to be empty. Any message that contains these fields is considered invalid.

None

This setting does not check the author, sequence number or signature fields of incoming messages. If these fields contain data, they are simply ignored.

NOTE: This setting will consider messages with invalid signatures as valid messages.

Trait Implementations

impl Clone for ValidationMode[src]

impl Debug for ValidationMode[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> From<T> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,