Struct slack_morphism::api::SlackApiViewsUpdateRequest
source · pub struct SlackApiViewsUpdateRequest {
pub view: SlackView,
pub external_id: Option<String>,
pub hash: Option<String>,
pub view_id: Option<SlackViewId>,
}
Fields§
§view: SlackView
§external_id: Option<String>
§hash: Option<String>
§view_id: Option<SlackViewId>
Implementations§
source§impl SlackApiViewsUpdateRequest
impl SlackApiViewsUpdateRequest
pub fn new(view: SlackView) -> Self
pub fn view(&mut self, value: SlackView) -> &mut Self
pub fn with_view(self, value: SlackView) -> Self
pub fn external_id(&mut self, value: String) -> &mut Self
pub fn reset_external_id(&mut self) -> &mut Self
pub fn mopt_external_id(&mut self, value: Option<String>) -> &mut Self
pub fn with_external_id(self, value: String) -> Self
pub fn without_external_id(self) -> Self
pub fn opt_external_id(self, value: Option<String>) -> Self
pub fn hash(&mut self, value: String) -> &mut Self
pub fn reset_hash(&mut self) -> &mut Self
pub fn mopt_hash(&mut self, value: Option<String>) -> &mut Self
pub fn with_hash(self, value: String) -> Self
pub fn without_hash(self) -> Self
pub fn opt_hash(self, value: Option<String>) -> Self
pub fn view_id(&mut self, value: SlackViewId) -> &mut Self
pub fn reset_view_id(&mut self) -> &mut Self
pub fn mopt_view_id(&mut self, value: Option<SlackViewId>) -> &mut Self
pub fn with_view_id(self, value: SlackViewId) -> Self
pub fn without_view_id(self) -> Self
pub fn opt_view_id(self, value: Option<SlackViewId>) -> Self
Trait Implementations§
source§impl Clone for SlackApiViewsUpdateRequest
impl Clone for SlackApiViewsUpdateRequest
source§fn clone(&self) -> SlackApiViewsUpdateRequest
fn clone(&self) -> SlackApiViewsUpdateRequest
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 SlackApiViewsUpdateRequest
impl Debug for SlackApiViewsUpdateRequest
source§impl<'de> Deserialize<'de> for SlackApiViewsUpdateRequest
impl<'de> Deserialize<'de> for SlackApiViewsUpdateRequest
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<SlackApiViewsUpdateRequestInit> for SlackApiViewsUpdateRequest
impl From<SlackApiViewsUpdateRequestInit> for SlackApiViewsUpdateRequest
source§fn from(value: SlackApiViewsUpdateRequestInit) -> Self
fn from(value: SlackApiViewsUpdateRequestInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiViewsUpdateRequest
impl PartialEq for SlackApiViewsUpdateRequest
source§fn eq(&self, other: &SlackApiViewsUpdateRequest) -> bool
fn eq(&self, other: &SlackApiViewsUpdateRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlackApiViewsUpdateRequest
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiViewsUpdateRequest
impl Send for SlackApiViewsUpdateRequest
impl Sync for SlackApiViewsUpdateRequest
impl Unpin for SlackApiViewsUpdateRequest
impl UnwindSafe for SlackApiViewsUpdateRequest
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