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 for SlackOAuthV2AuthedUser
impl PartialEq for SlackOAuthV2AuthedUser
Source§impl Serialize for SlackOAuthV2AuthedUser
impl Serialize for SlackOAuthV2AuthedUser
impl StructuralPartialEq for SlackOAuthV2AuthedUser
Auto Trait Implementations§
impl Freeze for SlackOAuthV2AuthedUser
impl RefUnwindSafe for SlackOAuthV2AuthedUser
impl Send for SlackOAuthV2AuthedUser
impl Sync for SlackOAuthV2AuthedUser
impl Unpin for SlackOAuthV2AuthedUser
impl UnwindSafe for SlackOAuthV2AuthedUser
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)