pub struct SlackOAuthV2AccessTokenResponseInit {
pub access_token: SlackApiTokenValue,
pub token_type: SlackApiTokenType,
pub scope: SlackApiTokenScope,
pub app_id: SlackAppId,
pub team: SlackTeamInfo,
pub authed_user: SlackOAuthV2AuthedUser,
}
Fields§
§access_token: SlackApiTokenValue
§token_type: SlackApiTokenType
§scope: SlackApiTokenScope
§app_id: SlackAppId
§team: SlackTeamInfo
§authed_user: SlackOAuthV2AuthedUser
Trait Implementations§
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.
Auto Trait Implementations§
impl RefUnwindSafe for SlackOAuthV2AccessTokenResponseInit
impl Send for SlackOAuthV2AccessTokenResponseInit
impl Sync for SlackOAuthV2AccessTokenResponseInit
impl Unpin for SlackOAuthV2AccessTokenResponseInit
impl UnwindSafe for SlackOAuthV2AccessTokenResponseInit
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