pub struct AppsPermissionsScopes {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl AppsPermissionsScopes
impl AppsPermissionsScopes
Sourcepub async fn list(
&self,
) -> Result<Response<ApiPermissionsScopesListSuccessSchema>, ClientError>
pub async fn list( &self, ) -> Result<Response<ApiPermissionsScopesListSuccessSchema>, ClientError>
This function performs a GET to the /apps.permissions.scopes.list endpoint.
Returns list of scopes this app has on a team.
FROM: https://api.slack.com/methods/apps.permissions.scopes.list
Parameters:
token: &str– Authentication token. Requires scope:none.
Auto Trait Implementations§
impl !RefUnwindSafe for AppsPermissionsScopes
impl !UnwindSafe for AppsPermissionsScopes
impl Freeze for AppsPermissionsScopes
impl Send for AppsPermissionsScopes
impl Sync for AppsPermissionsScopes
impl Unpin for AppsPermissionsScopes
impl UnsafeUnpin for AppsPermissionsScopes
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