[][src]Struct slack_morphism::listener::SlackEventWrongSignatureError

pub struct SlackEventWrongSignatureError {
    pub body_len: usize,
    pub ts: String,
    pub received_hash: String,
    pub generated_hash: String,
}

Fields

body_len: usizets: Stringreceived_hash: Stringgenerated_hash: String

Implementations

impl SlackEventWrongSignatureError[src]

pub fn new(
    body_len: usize,
    ts: String,
    received_hash: String,
    generated_hash: String
) -> Self
[src]

pub fn body_len(&mut self, value: usize) -> &mut Self[src]

pub fn with_body_len(self, value: usize) -> Self[src]

pub fn ts(&mut self, value: String) -> &mut Self[src]

pub fn with_ts(self, value: String) -> Self[src]

pub fn received_hash(&mut self, value: String) -> &mut Self[src]

pub fn with_received_hash(self, value: String) -> Self[src]

pub fn generated_hash(&mut self, value: String) -> &mut Self[src]

pub fn with_generated_hash(self, value: String) -> Self[src]

Trait Implementations

impl Clone for SlackEventWrongSignatureError[src]

impl Debug for SlackEventWrongSignatureError[src]

impl Display for SlackEventWrongSignatureError[src]

impl Error for SlackEventWrongSignatureError[src]

impl From<SlackEventWrongSignatureErrorInit> for SlackEventWrongSignatureError[src]

impl PartialEq<SlackEventWrongSignatureError> for SlackEventWrongSignatureError[src]

impl StructuralPartialEq for SlackEventWrongSignatureError[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> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.