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.
impl StructuralPartialEq for SlackApiViewsUpdateRequest
Auto Trait Implementations§
impl Freeze for SlackApiViewsUpdateRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)