pub struct SlackSocketModeEventsApiEvent {
pub envelope_params: SlackSocketModeEventEnvelopeParams,
pub payload: SlackPushEventCallback,
}Fields
envelope_params: SlackSocketModeEventEnvelopeParamspayload: SlackPushEventCallbackImplementations
sourceimpl SlackSocketModeEventsApiEvent
impl SlackSocketModeEventsApiEvent
pub fn new(
envelope_params: SlackSocketModeEventEnvelopeParams,
payload: SlackPushEventCallback
) -> Self
pub fn envelope_params(
&mut self,
value: SlackSocketModeEventEnvelopeParams
) -> &mut Self
pub fn with_envelope_params(
self,
value: SlackSocketModeEventEnvelopeParams
) -> Self
pub fn payload(&mut self, value: SlackPushEventCallback) -> &mut Self
pub fn with_payload(self, value: SlackPushEventCallback) -> Self
Trait Implementations
sourceimpl Clone for SlackSocketModeEventsApiEvent
impl Clone for SlackSocketModeEventsApiEvent
sourcefn clone(&self) -> SlackSocketModeEventsApiEvent
fn clone(&self) -> SlackSocketModeEventsApiEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SlackSocketModeEventsApiEvent
impl Debug for SlackSocketModeEventsApiEvent
sourceimpl<'de> Deserialize<'de> for SlackSocketModeEventsApiEvent
impl<'de> Deserialize<'de> for SlackSocketModeEventsApiEvent
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<SlackSocketModeEventsApiEventInit> for SlackSocketModeEventsApiEvent
impl From<SlackSocketModeEventsApiEventInit> for SlackSocketModeEventsApiEvent
sourcefn from(value: SlackSocketModeEventsApiEventInit) -> Self
fn from(value: SlackSocketModeEventsApiEventInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackSocketModeEventsApiEvent> for SlackSocketModeEventsApiEvent
impl PartialEq<SlackSocketModeEventsApiEvent> for SlackSocketModeEventsApiEvent
sourcefn eq(&self, other: &SlackSocketModeEventsApiEvent) -> bool
fn eq(&self, other: &SlackSocketModeEventsApiEvent) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SlackSocketModeEventsApiEvent) -> bool
fn ne(&self, other: &SlackSocketModeEventsApiEvent) -> bool
This method tests for !=.
impl StructuralPartialEq for SlackSocketModeEventsApiEvent
Auto Trait Implementations
impl RefUnwindSafe for SlackSocketModeEventsApiEvent
impl Send for SlackSocketModeEventsApiEvent
impl Sync for SlackSocketModeEventsApiEvent
impl Unpin for SlackSocketModeEventsApiEvent
impl UnwindSafe for SlackSocketModeEventsApiEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more