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: SlackApiTokenValuetoken_type: SlackApiTokenTypescope: SlackApiTokenScopebot_user_id: Option<SlackUserId>app_id: SlackAppIdteam: SlackTeamInfoauthed_user: SlackOAuthV2AuthedUserincoming_webhook: Option<SlackOAuthIncomingWebHook>Implementations
sourceimpl 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
sourceimpl Clone for SlackOAuthV2AccessTokenResponse
impl Clone for SlackOAuthV2AccessTokenResponse
sourcefn clone(&self) -> SlackOAuthV2AccessTokenResponse
fn clone(&self) -> SlackOAuthV2AccessTokenResponse
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 SlackOAuthV2AccessTokenResponse
impl<'de> Deserialize<'de> for SlackOAuthV2AccessTokenResponse
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<SlackOAuthV2AccessTokenResponseInit> for SlackOAuthV2AccessTokenResponse
impl From<SlackOAuthV2AccessTokenResponseInit> for SlackOAuthV2AccessTokenResponse
sourcefn from(value: SlackOAuthV2AccessTokenResponseInit) -> Self
fn from(value: SlackOAuthV2AccessTokenResponseInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackOAuthV2AccessTokenResponse> for SlackOAuthV2AccessTokenResponse
impl PartialEq<SlackOAuthV2AccessTokenResponse> for SlackOAuthV2AccessTokenResponse
sourcefn eq(&self, other: &SlackOAuthV2AccessTokenResponse) -> bool
fn eq(&self, other: &SlackOAuthV2AccessTokenResponse) -> bool
impl StructuralPartialEq for SlackOAuthV2AccessTokenResponse
Auto Trait Implementations
impl RefUnwindSafe for SlackOAuthV2AccessTokenResponse
impl Send for SlackOAuthV2AccessTokenResponse
impl Sync for SlackOAuthV2AccessTokenResponse
impl Unpin for SlackOAuthV2AccessTokenResponse
impl UnwindSafe for SlackOAuthV2AccessTokenResponse
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