Struct slack_morphism::api::SlackOAuthV2AuthedUser
source · pub struct SlackOAuthV2AuthedUser {
pub id: SlackUserId,
pub scope: Option<SlackApiTokenScope>,
pub access_token: Option<SlackApiTokenValue>,
pub token_type: Option<SlackApiTokenType>,
}Fields§
§id: SlackUserId§scope: Option<SlackApiTokenScope>§access_token: Option<SlackApiTokenValue>§token_type: Option<SlackApiTokenType>Implementations§
source§impl SlackOAuthV2AuthedUser
impl SlackOAuthV2AuthedUser
pub fn new(id: SlackUserId) -> Self
pub fn id(&mut self, value: SlackUserId) -> &mut Self
pub fn with_id(self, value: SlackUserId) -> Self
pub fn scope(&mut self, value: SlackApiTokenScope) -> &mut Self
pub fn reset_scope(&mut self) -> &mut Self
pub fn mopt_scope(&mut self, value: Option<SlackApiTokenScope>) -> &mut Self
pub fn with_scope(self, value: SlackApiTokenScope) -> Self
pub fn without_scope(self) -> Self
pub fn opt_scope(self, value: Option<SlackApiTokenScope>) -> Self
pub fn access_token(&mut self, value: SlackApiTokenValue) -> &mut Self
pub fn reset_access_token(&mut self) -> &mut Self
pub fn mopt_access_token( &mut self, value: Option<SlackApiTokenValue> ) -> &mut Self
pub fn with_access_token(self, value: SlackApiTokenValue) -> Self
pub fn without_access_token(self) -> Self
pub fn opt_access_token(self, value: Option<SlackApiTokenValue>) -> Self
pub fn token_type(&mut self, value: SlackApiTokenType) -> &mut Self
pub fn reset_token_type(&mut self) -> &mut Self
pub fn mopt_token_type(&mut self, value: Option<SlackApiTokenType>) -> &mut Self
pub fn with_token_type(self, value: SlackApiTokenType) -> Self
pub fn without_token_type(self) -> Self
pub fn opt_token_type(self, value: Option<SlackApiTokenType>) -> Self
Trait Implementations§
source§impl Clone for SlackOAuthV2AuthedUser
impl Clone for SlackOAuthV2AuthedUser
source§fn clone(&self) -> SlackOAuthV2AuthedUser
fn clone(&self) -> SlackOAuthV2AuthedUser
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 Debug for SlackOAuthV2AuthedUser
impl Debug for SlackOAuthV2AuthedUser
source§impl<'de> Deserialize<'de> for SlackOAuthV2AuthedUser
impl<'de> Deserialize<'de> for SlackOAuthV2AuthedUser
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<SlackOAuthV2AuthedUserInit> for SlackOAuthV2AuthedUser
impl From<SlackOAuthV2AuthedUserInit> for SlackOAuthV2AuthedUser
source§fn from(value: SlackOAuthV2AuthedUserInit) -> Self
fn from(value: SlackOAuthV2AuthedUserInit) -> Self
Converts to this type from the input type.
source§impl PartialEq<SlackOAuthV2AuthedUser> for SlackOAuthV2AuthedUser
impl PartialEq<SlackOAuthV2AuthedUser> for SlackOAuthV2AuthedUser
source§fn eq(&self, other: &SlackOAuthV2AuthedUser) -> bool
fn eq(&self, other: &SlackOAuthV2AuthedUser) -> bool
This method tests for
self and other values to be equal, and is used
by ==.