pub struct SlackApiToken {
pub token_value: SlackApiTokenValue,
pub cookie: Option<SlackApiCookieValue>,
pub team_id: Option<SlackTeamId>,
pub scope: Option<SlackApiTokenScope>,
pub token_type: Option<SlackApiTokenType>,
}
Fields§
§token_value: SlackApiTokenValue
§team_id: Option<SlackTeamId>
§scope: Option<SlackApiTokenScope>
§token_type: Option<SlackApiTokenType>
Implementations§
Source§impl SlackApiToken
impl SlackApiToken
pub fn new(token_value: SlackApiTokenValue) -> Self
pub fn token_value(&mut self, value: SlackApiTokenValue) -> &mut Self
pub fn with_token_value(self, value: SlackApiTokenValue) -> Self
pub fn team_id(&mut self, value: SlackTeamId) -> &mut Self
pub fn reset_team_id(&mut self) -> &mut Self
pub fn mopt_team_id(&mut self, value: Option<SlackTeamId>) -> &mut Self
pub fn with_team_id(self, value: SlackTeamId) -> Self
pub fn without_team_id(self) -> Self
pub fn opt_team_id(self, value: Option<SlackTeamId>) -> 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 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 SlackApiToken
impl Clone for SlackApiToken
Source§fn clone(&self) -> SlackApiToken
fn clone(&self) -> SlackApiToken
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 SlackApiToken
impl Debug for SlackApiToken
Source§impl<'de> Deserialize<'de> for SlackApiToken
impl<'de> Deserialize<'de> for SlackApiToken
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<SlackApiTokenInit> for SlackApiToken
impl From<SlackApiTokenInit> for SlackApiToken
Source§fn from(value: SlackApiTokenInit) -> Self
fn from(value: SlackApiTokenInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackApiToken
impl PartialEq for SlackApiToken
Source§impl Serialize for SlackApiToken
impl Serialize for SlackApiToken
impl Eq for SlackApiToken
impl StructuralPartialEq for SlackApiToken
Auto Trait Implementations§
impl Freeze for SlackApiToken
impl RefUnwindSafe for SlackApiToken
impl Send for SlackApiToken
impl Sync for SlackApiToken
impl Unpin for SlackApiToken
impl UnwindSafe for SlackApiToken
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
)