Struct slack_morphism::api::SlackApiViewsOpenRequest
source · pub struct SlackApiViewsOpenRequest {
pub trigger_id: SlackTriggerId,
pub view: SlackView,
}
Fields§
§trigger_id: SlackTriggerId
§view: SlackView
Implementations§
source§impl SlackApiViewsOpenRequest
impl SlackApiViewsOpenRequest
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 SlackApiViewsOpenRequest
impl Clone for SlackApiViewsOpenRequest
source§fn clone(&self) -> SlackApiViewsOpenRequest
fn clone(&self) -> SlackApiViewsOpenRequest
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 SlackApiViewsOpenRequest
impl Debug for SlackApiViewsOpenRequest
source§impl<'de> Deserialize<'de> for SlackApiViewsOpenRequest
impl<'de> Deserialize<'de> for SlackApiViewsOpenRequest
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<SlackApiViewsOpenRequestInit> for SlackApiViewsOpenRequest
impl From<SlackApiViewsOpenRequestInit> for SlackApiViewsOpenRequest
source§fn from(value: SlackApiViewsOpenRequestInit) -> Self
fn from(value: SlackApiViewsOpenRequestInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiViewsOpenRequest
impl PartialEq for SlackApiViewsOpenRequest
source§fn eq(&self, other: &SlackApiViewsOpenRequest) -> bool
fn eq(&self, other: &SlackApiViewsOpenRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SlackApiViewsOpenRequest
impl Serialize for SlackApiViewsOpenRequest
impl StructuralPartialEq for SlackApiViewsOpenRequest
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiViewsOpenRequest
impl Send for SlackApiViewsOpenRequest
impl Sync for SlackApiViewsOpenRequest
impl Unpin for SlackApiViewsOpenRequest
impl UnwindSafe for SlackApiViewsOpenRequest
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