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: SlackApiTokenValuetoken_type: SlackApiTokenTypescope: SlackApiTokenScopeapp_id: SlackAppIdteam: SlackTeamInfoauthed_user: SlackOAuthV2AuthedUserTrait Implementations
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.
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
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