Struct slack_morphism::api::SlackApiViewsPushRequest
source · pub struct SlackApiViewsPushRequest {
pub trigger_id: SlackTriggerId,
pub view: SlackView,
}
Fields§
§trigger_id: SlackTriggerId
§view: SlackView
Implementations§
source§impl SlackApiViewsPushRequest
impl SlackApiViewsPushRequest
pub fn new(trigger_id: SlackTriggerId, view: SlackView) -> Self
pub fn trigger_id(&mut self, value: SlackTriggerId) -> &mut Self
pub fn with_trigger_id(self, value: SlackTriggerId) -> Self
pub fn view(&mut self, value: SlackView) -> &mut Self
pub fn with_view(self, value: SlackView) -> Self
Trait Implementations§
source§impl Clone for SlackApiViewsPushRequest
impl Clone for SlackApiViewsPushRequest
source§fn clone(&self) -> SlackApiViewsPushRequest
fn clone(&self) -> SlackApiViewsPushRequest
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SlackApiViewsPushRequest
impl Debug for SlackApiViewsPushRequest
source§impl<'de> Deserialize<'de> for SlackApiViewsPushRequest
impl<'de> Deserialize<'de> for SlackApiViewsPushRequest
source§fn 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
source§impl From<SlackApiViewsPushRequestInit> for SlackApiViewsPushRequest
impl From<SlackApiViewsPushRequestInit> for SlackApiViewsPushRequest
source§fn from(value: SlackApiViewsPushRequestInit) -> Self
fn from(value: SlackApiViewsPushRequestInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiViewsPushRequest
impl PartialEq for SlackApiViewsPushRequest
source§fn eq(&self, other: &SlackApiViewsPushRequest) -> bool
fn eq(&self, other: &SlackApiViewsPushRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SlackApiViewsPushRequest
impl Serialize for SlackApiViewsPushRequest
impl StructuralPartialEq for SlackApiViewsPushRequest
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiViewsPushRequest
impl Send for SlackApiViewsPushRequest
impl Sync for SlackApiViewsPushRequest
impl Unpin for SlackApiViewsPushRequest
impl UnwindSafe for SlackApiViewsPushRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more