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: SlackViewexternal_id: Option<String>hash: Option<String>view_id: Option<SlackViewId>Implementations
sourceimpl 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
sourceimpl Clone for SlackApiViewsUpdateRequest
impl Clone for SlackApiViewsUpdateRequest
sourcefn clone(&self) -> SlackApiViewsUpdateRequest
fn clone(&self) -> SlackApiViewsUpdateRequest
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 SlackApiViewsUpdateRequest
impl Debug for SlackApiViewsUpdateRequest
sourceimpl<'de> Deserialize<'de> for SlackApiViewsUpdateRequest
impl<'de> Deserialize<'de> for SlackApiViewsUpdateRequest
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<SlackApiViewsUpdateRequestInit> for SlackApiViewsUpdateRequest
impl From<SlackApiViewsUpdateRequestInit> for SlackApiViewsUpdateRequest
sourcefn from(value: SlackApiViewsUpdateRequestInit) -> Self
fn from(value: SlackApiViewsUpdateRequestInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiViewsUpdateRequest> for SlackApiViewsUpdateRequest
impl PartialEq<SlackApiViewsUpdateRequest> for SlackApiViewsUpdateRequest
sourcefn eq(&self, other: &SlackApiViewsUpdateRequest) -> bool
fn eq(&self, other: &SlackApiViewsUpdateRequest) -> bool
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
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