Struct slack_morphism::api::SlackApiViewsOpenRequest
source · pub struct SlackApiViewsOpenRequest {
pub trigger_id: SlackTriggerId,
pub view: SlackView,
}Fields
trigger_id: SlackTriggerIdview: SlackViewImplementations
sourceimpl 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
sourceimpl Clone for SlackApiViewsOpenRequest
impl Clone for SlackApiViewsOpenRequest
sourcefn clone(&self) -> SlackApiViewsOpenRequest
fn clone(&self) -> SlackApiViewsOpenRequest
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 moresourceimpl Debug for SlackApiViewsOpenRequest
impl Debug for SlackApiViewsOpenRequest
sourceimpl<'de> Deserialize<'de> for SlackApiViewsOpenRequest
impl<'de> Deserialize<'de> for SlackApiViewsOpenRequest
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<SlackApiViewsOpenRequestInit> for SlackApiViewsOpenRequest
impl From<SlackApiViewsOpenRequestInit> for SlackApiViewsOpenRequest
sourcefn from(value: SlackApiViewsOpenRequestInit) -> Self
fn from(value: SlackApiViewsOpenRequestInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiViewsOpenRequest> for SlackApiViewsOpenRequest
impl PartialEq<SlackApiViewsOpenRequest> for SlackApiViewsOpenRequest
sourcefn eq(&self, other: &SlackApiViewsOpenRequest) -> bool
fn eq(&self, other: &SlackApiViewsOpenRequest) -> bool
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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