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
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SlackOAuthV2AccessTokenRequest
Auto Trait Implementations§
impl Freeze for SlackOAuthV2AccessTokenRequest
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
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
)