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: SlackUserIdscope: Option<SlackApiTokenScope>access_token: Option<SlackApiTokenValue>token_type: Option<SlackApiTokenType>Implementations
sourceimpl 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
sourceimpl Clone for SlackOAuthV2AuthedUser
impl Clone for SlackOAuthV2AuthedUser
sourcefn clone(&self) -> SlackOAuthV2AuthedUser
fn clone(&self) -> SlackOAuthV2AuthedUser
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 Debug for SlackOAuthV2AuthedUser
impl Debug for SlackOAuthV2AuthedUser
sourceimpl<'de> Deserialize<'de> for SlackOAuthV2AuthedUser
impl<'de> Deserialize<'de> for SlackOAuthV2AuthedUser
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<SlackOAuthV2AuthedUserInit> for SlackOAuthV2AuthedUser
impl From<SlackOAuthV2AuthedUserInit> for SlackOAuthV2AuthedUser
sourcefn from(value: SlackOAuthV2AuthedUserInit) -> Self
fn from(value: SlackOAuthV2AuthedUserInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackOAuthV2AuthedUser> for SlackOAuthV2AuthedUser
impl PartialEq<SlackOAuthV2AuthedUser> for SlackOAuthV2AuthedUser
sourcefn eq(&self, other: &SlackOAuthV2AuthedUser) -> bool
fn eq(&self, other: &SlackOAuthV2AuthedUser) -> bool
sourceimpl Serialize for SlackOAuthV2AuthedUser
impl Serialize for SlackOAuthV2AuthedUser
impl StructuralPartialEq for SlackOAuthV2AuthedUser
Auto Trait Implementations
impl RefUnwindSafe for SlackOAuthV2AuthedUser
impl Send for SlackOAuthV2AuthedUser
impl Sync for SlackOAuthV2AuthedUser
impl Unpin for SlackOAuthV2AuthedUser
impl UnwindSafe for SlackOAuthV2AuthedUser
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