pub struct Apps {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl Apps
impl Apps
Sourcepub async fn uninstall(
&self,
client_id: &str,
client_secret: &str,
) -> Result<Response<DndEndSchema>, ClientError>
pub async fn uninstall( &self, client_id: &str, client_secret: &str, ) -> Result<Response<DndEndSchema>, ClientError>
This function performs a GET to the /apps.uninstall endpoint.
Uninstalls your app from a workspace.
FROM: https://api.slack.com/methods/apps.uninstall
Parameters:
token: &str– Authentication token. Requires scope:none.client_id: &str– Issued when you created your application.client_secret: &str– Issued when you created your application.
Auto Trait Implementations§
impl Freeze for Apps
impl !RefUnwindSafe for Apps
impl Send for Apps
impl Sync for Apps
impl Unpin for Apps
impl !UnwindSafe for Apps
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