pub struct AppCredentials {
pub id: String,
pub secret: String,
pub signing_secret: String,
pub verification_token: String,
}Expand description
The type contains An App Credentials from https://api.slack.com/apps/[App ID]/general.
Fields§
§id: StringThe Client ID.
secret: StringThe Client Secret.
signing_secret: StringThe Signing Secret.
verification_token: StringThe Verification Token.
Trait Implementations§
Source§impl Clone for AppCredentials
impl Clone for AppCredentials
Source§fn clone(&self) -> AppCredentials
fn clone(&self) -> AppCredentials
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for AppCredentials
impl RefUnwindSafe for AppCredentials
impl Send for AppCredentials
impl Sync for AppCredentials
impl Unpin for AppCredentials
impl UnwindSafe for AppCredentials
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