pub struct SlackOAuthV2AccessTokenRequest {
pub client_id: SlackClientId,
pub client_secret: SlackClientSecret,
pub code: SlackOAuthCode,
pub redirect_uri: Option<Url>,
}
Fields§
§client_id: SlackClientId
§client_secret: SlackClientSecret
§code: SlackOAuthCode
§redirect_uri: Option<Url>
Implementations§
source§impl SlackOAuthV2AccessTokenRequest
impl SlackOAuthV2AccessTokenRequest
pub fn new( client_id: SlackClientId, client_secret: SlackClientSecret, code: SlackOAuthCode ) -> Self
pub fn client_id(&mut self, value: SlackClientId) -> &mut Self
pub fn with_client_id(self, value: SlackClientId) -> Self
pub fn client_secret(&mut self, value: SlackClientSecret) -> &mut Self
pub fn with_client_secret(self, value: SlackClientSecret) -> Self
pub fn code(&mut self, value: SlackOAuthCode) -> &mut Self
pub fn with_code(self, value: SlackOAuthCode) -> Self
pub fn redirect_uri(&mut self, value: Url) -> &mut Self
pub fn reset_redirect_uri(&mut self) -> &mut Self
pub fn mopt_redirect_uri(&mut self, value: Option<Url>) -> &mut Self
pub fn with_redirect_uri(self, value: Url) -> Self
pub fn without_redirect_uri(self) -> Self
pub fn opt_redirect_uri(self, value: Option<Url>) -> Self
Trait Implementations§
source§impl Clone for SlackOAuthV2AccessTokenRequest
impl Clone for SlackOAuthV2AccessTokenRequest
source§fn clone(&self) -> SlackOAuthV2AccessTokenRequest
fn clone(&self) -> SlackOAuthV2AccessTokenRequest
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<'de> Deserialize<'de> for SlackOAuthV2AccessTokenRequest
impl<'de> Deserialize<'de> for SlackOAuthV2AccessTokenRequest
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<SlackOAuthV2AccessTokenRequestInit> for SlackOAuthV2AccessTokenRequest
impl From<SlackOAuthV2AccessTokenRequestInit> for SlackOAuthV2AccessTokenRequest
source§fn from(value: SlackOAuthV2AccessTokenRequestInit) -> Self
fn from(value: SlackOAuthV2AccessTokenRequestInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackOAuthV2AccessTokenRequest
impl PartialEq for SlackOAuthV2AccessTokenRequest
source§fn eq(&self, other: &SlackOAuthV2AccessTokenRequest) -> bool
fn eq(&self, other: &SlackOAuthV2AccessTokenRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlackOAuthV2AccessTokenRequest
Auto Trait Implementations§
impl RefUnwindSafe for SlackOAuthV2AccessTokenRequest
impl Send for SlackOAuthV2AccessTokenRequest
impl Sync for SlackOAuthV2AccessTokenRequest
impl Unpin for SlackOAuthV2AccessTokenRequest
impl UnwindSafe for SlackOAuthV2AccessTokenRequest
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