[−][src]Enum libp2p_gossipsub::ValidationMode
The types of message validation that can be employed by gossipsub.
Variants
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 PrivacyMode::Anonymous
and
all messages that do not have signatures.
This setting permits messages that have no author, sequence number or signature. If any of these fields exist in the message these are validated.
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.
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]
fn clone(&self) -> ValidationMode
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ValidationMode
[src]
Auto Trait Implementations
impl RefUnwindSafe for ValidationMode
impl Send for ValidationMode
impl Sync for ValidationMode
impl Unpin for ValidationMode
impl UnwindSafe for ValidationMode
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,