[−][src]Struct slack_morphism::api::SlackOAuthV2AccessTokenResponse
Fields
access_token: Stringtoken_type: SlackApiTokenTypescope: SlackApiTokenScopebot_user_id: Option<SlackUserId>app_id: SlackAppIdteam: SlackTeamInfoauthed_user: SlackOAuthV2AuthedUserincoming_webhook: Option<SlackOAuthIncomingWebHook>Implementations
impl SlackOAuthV2AccessTokenResponse[src]
pub fn new(
access_token: String,
token_type: SlackApiTokenType,
scope: SlackApiTokenScope,
app_id: SlackAppId,
team: SlackTeamInfo,
authed_user: SlackOAuthV2AuthedUser
) -> Self[src]
access_token: String,
token_type: SlackApiTokenType,
scope: SlackApiTokenScope,
app_id: SlackAppId,
team: SlackTeamInfo,
authed_user: SlackOAuthV2AuthedUser
) -> Self
pub fn access_token(&mut self, value: String) -> &mut Self[src]
pub fn with_access_token(self, value: String) -> Self[src]
pub fn token_type(&mut self, value: SlackApiTokenType) -> &mut Self[src]
pub fn with_token_type(self, value: SlackApiTokenType) -> Self[src]
pub fn scope(&mut self, value: SlackApiTokenScope) -> &mut Self[src]
pub fn with_scope(self, value: SlackApiTokenScope) -> Self[src]
pub fn bot_user_id(&mut self, value: SlackUserId) -> &mut Self[src]
pub fn reset_bot_user_id(&mut self) -> &mut Self[src]
pub fn mopt_bot_user_id(&mut self, value: Option<SlackUserId>) -> &mut Self[src]
pub fn with_bot_user_id(self, value: SlackUserId) -> Self[src]
pub fn without_bot_user_id(self) -> Self[src]
pub fn opt_bot_user_id(self, value: Option<SlackUserId>) -> Self[src]
pub fn app_id(&mut self, value: SlackAppId) -> &mut Self[src]
pub fn with_app_id(self, value: SlackAppId) -> Self[src]
pub fn team(&mut self, value: SlackTeamInfo) -> &mut Self[src]
pub fn with_team(self, value: SlackTeamInfo) -> Self[src]
pub fn authed_user(&mut self, value: SlackOAuthV2AuthedUser) -> &mut Self[src]
pub fn with_authed_user(self, value: SlackOAuthV2AuthedUser) -> Self[src]
pub fn incoming_webhook(
&mut self,
value: SlackOAuthIncomingWebHook
) -> &mut Self[src]
&mut self,
value: SlackOAuthIncomingWebHook
) -> &mut Self
pub fn reset_incoming_webhook(&mut self) -> &mut Self[src]
pub fn mopt_incoming_webhook(
&mut self,
value: Option<SlackOAuthIncomingWebHook>
) -> &mut Self[src]
&mut self,
value: Option<SlackOAuthIncomingWebHook>
) -> &mut Self
pub fn with_incoming_webhook(self, value: SlackOAuthIncomingWebHook) -> Self[src]
pub fn without_incoming_webhook(self) -> Self[src]
pub fn opt_incoming_webhook(
self,
value: Option<SlackOAuthIncomingWebHook>
) -> Self[src]
self,
value: Option<SlackOAuthIncomingWebHook>
) -> Self
Trait Implementations
impl Clone for SlackOAuthV2AccessTokenResponse[src]
pub fn clone(&self) -> SlackOAuthV2AccessTokenResponse[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for SlackOAuthV2AccessTokenResponse[src]
impl<'de> Deserialize<'de> for SlackOAuthV2AccessTokenResponse[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl From<SlackOAuthV2AccessTokenResponseInit> for SlackOAuthV2AccessTokenResponse[src]
pub fn from(value: SlackOAuthV2AccessTokenResponseInit) -> Self[src]
impl PartialEq<SlackOAuthV2AccessTokenResponse> for SlackOAuthV2AccessTokenResponse[src]
pub fn eq(&self, other: &SlackOAuthV2AccessTokenResponse) -> bool[src]
pub fn ne(&self, other: &SlackOAuthV2AccessTokenResponse) -> bool[src]
impl Serialize for SlackOAuthV2AccessTokenResponse[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for SlackOAuthV2AccessTokenResponse[src]
Auto Trait Implementations
impl RefUnwindSafe for SlackOAuthV2AccessTokenResponse[src]
impl Send for SlackOAuthV2AccessTokenResponse[src]
impl Sync for SlackOAuthV2AccessTokenResponse[src]
impl Unpin for SlackOAuthV2AccessTokenResponse[src]
impl UnwindSafe for SlackOAuthV2AccessTokenResponse[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,