[−][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
crate::behaviour::MessageAuthenticity::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]
pub fn clone(&self) -> ValidationMode
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ValidationMode
[src]
Auto Trait Implementations
impl RefUnwindSafe for ValidationMode
[src]
impl Send for ValidationMode
[src]
impl Sync for ValidationMode
[src]
impl Unpin for ValidationMode
[src]
impl UnwindSafe for ValidationMode
[src]
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,
pub 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.
pub fn to_owned(&self) -> T
[src]
pub 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.
pub 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.
pub 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>,