pub struct IamCertMailVCodeServ;Implementations§
Source§impl IamCertMailVCodeServ
impl IamCertMailVCodeServ
pub async fn add_cert_conf( add_req: &IamCertConfMailVCodeAddOrModifyReq, rel_iam_item_id: Option<String>, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<String>
pub async fn modify_cert_conf( id: &str, modify_req: &IamCertConfMailVCodeAddOrModifyReq, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<()>
pub async fn add_cert( add_req: &IamCertMailVCodeAddReq, account_id: &str, rel_rbum_cert_conf_id: &str, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<String>
pub async fn add_cert_skip_activate( add_req: &IamCertMailVCodeAddReq, account_id: &str, rel_rbum_cert_conf_id: &str, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<String>
pub async fn modify_cert( id: &str, modify_req: &IamCertMailVCodeModifyReq, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<()>
pub async fn add_or_modify_cert( mail: &str, account_id: &str, rel_rbum_cert_conf_id: &str, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<()>
pub async fn resend_activation_mail( account_id: &str, mail: &str, cool_down_id_sec: Option<u32>, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<()>
pub async fn activate_mail( mail: &str, input_vcode: &str, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<()>
pub async fn send_bind_mail( mail: &str, cool_down_id_sec: Option<u32>, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<()>
pub async fn bind_mail( mail: &str, input_vcode: &str, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<String>
pub async fn send_login_mail( mail: &str, tenant_id: &str, cool_down_id_sec: Option<u32>, funs: &TardisFunsInst, ) -> TardisResult<()>
pub async fn add_or_enable_cert_conf( add_req: &IamCertConfMailVCodeAddOrModifyReq, rel_iam_item_id: Option<String>, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<String>
pub async fn send_pwd( account_id: &str, pwd: &str, funs: &TardisFunsInst, ctx: &TardisContext, ) -> TardisResult<()>
Auto Trait Implementations§
impl Freeze for IamCertMailVCodeServ
impl RefUnwindSafe for IamCertMailVCodeServ
impl Send for IamCertMailVCodeServ
impl Sync for IamCertMailVCodeServ
impl Unpin for IamCertMailVCodeServ
impl UnwindSafe for IamCertMailVCodeServ
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more