Struct slack_morphism::api::SlackOAuthV2AccessTokenRequest
source · [−]pub struct SlackOAuthV2AccessTokenRequest {
pub client_id: SlackClientId,
pub client_secret: SlackClientSecret,
pub code: SlackOAuthCode,
pub redirect_uri: Option<Url>,
}Fields
client_id: SlackClientIdclient_secret: SlackClientSecretcode: SlackOAuthCoderedirect_uri: Option<Url>Implementations
sourceimpl 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
sourceimpl Clone for SlackOAuthV2AccessTokenRequest
impl Clone for SlackOAuthV2AccessTokenRequest
sourcefn clone(&self) -> SlackOAuthV2AccessTokenRequest
fn clone(&self) -> SlackOAuthV2AccessTokenRequest
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<'de> Deserialize<'de> for SlackOAuthV2AccessTokenRequest
impl<'de> Deserialize<'de> for SlackOAuthV2AccessTokenRequest
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<SlackOAuthV2AccessTokenRequestInit> for SlackOAuthV2AccessTokenRequest
impl From<SlackOAuthV2AccessTokenRequestInit> for SlackOAuthV2AccessTokenRequest
sourcefn from(value: SlackOAuthV2AccessTokenRequestInit) -> Self
fn from(value: SlackOAuthV2AccessTokenRequestInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackOAuthV2AccessTokenRequest> for SlackOAuthV2AccessTokenRequest
impl PartialEq<SlackOAuthV2AccessTokenRequest> for SlackOAuthV2AccessTokenRequest
sourcefn eq(&self, other: &SlackOAuthV2AccessTokenRequest) -> bool
fn eq(&self, other: &SlackOAuthV2AccessTokenRequest) -> bool
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
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