pub struct Authentication<'a> { /* private fields */ }
Implementations§
Source§impl<'a> Authentication<'a>
impl<'a> Authentication<'a>
pub async fn dashboard_access( &self, app_id: String, options: Option<PostOptions>, ) -> Result<DashboardAccessOut>
Sourcepub async fn app_portal_access(
&self,
app_id: String,
app_portal_access_in: AppPortalAccessIn,
options: Option<PostOptions>,
) -> Result<AppPortalAccessOut>
pub async fn app_portal_access( &self, app_id: String, app_portal_access_in: AppPortalAccessIn, options: Option<PostOptions>, ) -> Result<AppPortalAccessOut>
Use this function to get magic links (and authentication codes) for connecting your users to the Consumer Application Portal.
Auto Trait Implementations§
impl<'a> Freeze for Authentication<'a>
impl<'a> !RefUnwindSafe for Authentication<'a>
impl<'a> Send for Authentication<'a>
impl<'a> Sync for Authentication<'a>
impl<'a> Unpin for Authentication<'a>
impl<'a> !UnwindSafe for Authentication<'a>
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