pub struct SlackAppManifestSettingsInteractivity {
pub is_enabled: bool,
pub request_url: Option<Url>,
pub message_menu_options_url: Option<Url>,
}Fields
is_enabled: boolrequest_url: Option<Url>Implementations
sourceimpl SlackAppManifestSettingsInteractivity
impl SlackAppManifestSettingsInteractivity
pub fn new(is_enabled: bool) -> Self
pub fn is_enabled(&mut self, value: bool) -> &mut Self
pub fn with_is_enabled(self, value: bool) -> Self
pub fn request_url(&mut self, value: Url) -> &mut Self
pub fn reset_request_url(&mut self) -> &mut Self
pub fn mopt_request_url(&mut self, value: Option<Url>) -> &mut Self
pub fn with_request_url(self, value: Url) -> Self
pub fn without_request_url(self) -> Self
pub fn opt_request_url(self, value: Option<Url>) -> Self
Trait Implementations
sourceimpl Clone for SlackAppManifestSettingsInteractivity
impl Clone for SlackAppManifestSettingsInteractivity
sourcefn clone(&self) -> SlackAppManifestSettingsInteractivity
fn clone(&self) -> SlackAppManifestSettingsInteractivity
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<'de> Deserialize<'de> for SlackAppManifestSettingsInteractivity
impl<'de> Deserialize<'de> for SlackAppManifestSettingsInteractivity
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<SlackAppManifestSettingsInteractivityInit> for SlackAppManifestSettingsInteractivity
impl From<SlackAppManifestSettingsInteractivityInit> for SlackAppManifestSettingsInteractivity
sourcefn from(value: SlackAppManifestSettingsInteractivityInit) -> Self
fn from(value: SlackAppManifestSettingsInteractivityInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackAppManifestSettingsInteractivity> for SlackAppManifestSettingsInteractivity
impl PartialEq<SlackAppManifestSettingsInteractivity> for SlackAppManifestSettingsInteractivity
sourcefn eq(&self, other: &SlackAppManifestSettingsInteractivity) -> bool
fn eq(&self, other: &SlackAppManifestSettingsInteractivity) -> bool
impl StructuralPartialEq for SlackAppManifestSettingsInteractivity
Auto Trait Implementations
impl RefUnwindSafe for SlackAppManifestSettingsInteractivity
impl Send for SlackAppManifestSettingsInteractivity
impl Sync for SlackAppManifestSettingsInteractivity
impl Unpin for SlackAppManifestSettingsInteractivity
impl UnwindSafe for SlackAppManifestSettingsInteractivity
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