Struct slack_morphism::SlackApiToken
source · pub struct SlackApiToken {
pub token_value: SlackApiTokenValue,
pub team_id: Option<SlackTeamId>,
pub scope: Option<SlackApiTokenScope>,
pub token_type: Option<SlackApiTokenType>,
}Fields
token_value: SlackApiTokenValueteam_id: Option<SlackTeamId>scope: Option<SlackApiTokenScope>token_type: Option<SlackApiTokenType>Implementations
sourceimpl 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
sourceimpl Clone for SlackApiToken
impl Clone for SlackApiToken
sourcefn clone(&self) -> SlackApiToken
fn clone(&self) -> SlackApiToken
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 SlackApiToken
impl Debug for SlackApiToken
sourceimpl<'de> Deserialize<'de> for SlackApiToken
impl<'de> Deserialize<'de> for SlackApiToken
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<SlackApiTokenInit> for SlackApiToken
impl From<SlackApiTokenInit> for SlackApiToken
sourcefn from(value: SlackApiTokenInit) -> Self
fn from(value: SlackApiTokenInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiToken> for SlackApiToken
impl PartialEq<SlackApiToken> for SlackApiToken
sourcefn eq(&self, other: &SlackApiToken) -> bool
fn eq(&self, other: &SlackApiToken) -> bool
sourceimpl Serialize for SlackApiToken
impl Serialize for SlackApiToken
impl Eq for SlackApiToken
impl StructuralEq for SlackApiToken
impl StructuralPartialEq for SlackApiToken
Auto Trait Implementations
impl RefUnwindSafe for SlackApiToken
impl Send for SlackApiToken
impl Sync for SlackApiToken
impl Unpin for SlackApiToken
impl UnwindSafe for SlackApiToken
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