pub struct SlackOAuthV2AccessTokenResponse {
pub access_token: SlackApiTokenValue,
pub token_type: SlackApiTokenType,
pub scope: SlackApiTokenScope,
pub bot_user_id: Option<SlackUserId>,
pub app_id: SlackAppId,
pub team: SlackTeamInfo,
pub authed_user: SlackOAuthV2AuthedUser,
pub incoming_webhook: Option<SlackOAuthIncomingWebHook>,
}
Fields§
§access_token: SlackApiTokenValue
§token_type: SlackApiTokenType
§scope: SlackApiTokenScope
§bot_user_id: Option<SlackUserId>
§app_id: SlackAppId
§team: SlackTeamInfo
§authed_user: SlackOAuthV2AuthedUser
§incoming_webhook: Option<SlackOAuthIncomingWebHook>
Implementations§
Source§impl SlackOAuthV2AccessTokenResponse
impl SlackOAuthV2AccessTokenResponse
pub fn new( access_token: SlackApiTokenValue, token_type: SlackApiTokenType, scope: SlackApiTokenScope, app_id: SlackAppId, team: SlackTeamInfo, authed_user: SlackOAuthV2AuthedUser, ) -> Self
pub fn access_token(&mut self, value: SlackApiTokenValue) -> &mut Self
pub fn with_access_token(self, value: SlackApiTokenValue) -> Self
pub fn token_type(&mut self, value: SlackApiTokenType) -> &mut Self
pub fn with_token_type(self, value: SlackApiTokenType) -> Self
pub fn scope(&mut self, value: SlackApiTokenScope) -> &mut Self
pub fn with_scope(self, value: SlackApiTokenScope) -> Self
pub fn bot_user_id(&mut self, value: SlackUserId) -> &mut Self
pub fn reset_bot_user_id(&mut self) -> &mut Self
pub fn mopt_bot_user_id(&mut self, value: Option<SlackUserId>) -> &mut Self
pub fn with_bot_user_id(self, value: SlackUserId) -> Self
pub fn without_bot_user_id(self) -> Self
pub fn opt_bot_user_id(self, value: Option<SlackUserId>) -> Self
pub fn app_id(&mut self, value: SlackAppId) -> &mut Self
pub fn with_app_id(self, value: SlackAppId) -> Self
pub fn team(&mut self, value: SlackTeamInfo) -> &mut Self
pub fn with_team(self, value: SlackTeamInfo) -> Self
pub fn authed_user(&mut self, value: SlackOAuthV2AuthedUser) -> &mut Self
pub fn with_authed_user(self, value: SlackOAuthV2AuthedUser) -> Self
pub fn incoming_webhook( &mut self, value: SlackOAuthIncomingWebHook, ) -> &mut Self
pub fn reset_incoming_webhook(&mut self) -> &mut Self
pub fn mopt_incoming_webhook( &mut self, value: Option<SlackOAuthIncomingWebHook>, ) -> &mut Self
pub fn with_incoming_webhook(self, value: SlackOAuthIncomingWebHook) -> Self
pub fn without_incoming_webhook(self) -> Self
pub fn opt_incoming_webhook( self, value: Option<SlackOAuthIncomingWebHook>, ) -> Self
Trait Implementations§
Source§impl Clone for SlackOAuthV2AccessTokenResponse
impl Clone for SlackOAuthV2AccessTokenResponse
Source§fn clone(&self) -> SlackOAuthV2AccessTokenResponse
fn clone(&self) -> SlackOAuthV2AccessTokenResponse
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<'de> Deserialize<'de> for SlackOAuthV2AccessTokenResponse
impl<'de> Deserialize<'de> for SlackOAuthV2AccessTokenResponse
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<SlackOAuthV2AccessTokenResponseInit> for SlackOAuthV2AccessTokenResponse
impl From<SlackOAuthV2AccessTokenResponseInit> for SlackOAuthV2AccessTokenResponse
Source§fn from(value: SlackOAuthV2AccessTokenResponseInit) -> Self
fn from(value: SlackOAuthV2AccessTokenResponseInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackOAuthV2AccessTokenResponse
impl PartialEq for SlackOAuthV2AccessTokenResponse
Source§fn eq(&self, other: &SlackOAuthV2AccessTokenResponse) -> bool
fn eq(&self, other: &SlackOAuthV2AccessTokenResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SlackOAuthV2AccessTokenResponse
Auto Trait Implementations§
impl Freeze for SlackOAuthV2AccessTokenResponse
impl RefUnwindSafe for SlackOAuthV2AccessTokenResponse
impl Send for SlackOAuthV2AccessTokenResponse
impl Sync for SlackOAuthV2AccessTokenResponse
impl Unpin for SlackOAuthV2AccessTokenResponse
impl UnwindSafe for SlackOAuthV2AccessTokenResponse
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
)