File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use std::{
77use anyhow_ext:: { Context , Result , bail} ;
88use futures:: { StreamExt , TryStreamExt } ;
99use user:: User ;
10- use zitadel:: { SkipableZitadelResult , Zitadel } ;
10+ use zitadel:: { SkippableZitadelResult , Zitadel } ;
1111use zitadel_rust_client:: v2:: users:: { SetHumanProfile , UpdateHumanUserRequest } ;
1212
1313mod config;
Original file line number Diff line number Diff line change @@ -509,7 +509,7 @@ trait GenericCombinatorsExt {
509509impl < X > GenericCombinatorsExt for X { }
510510
511511/// Helper trait for skippable zitadel errors to use with `[SkippedErrors]`
512- pub trait SkipableZitadelResult < X : Send > {
512+ pub trait SkippableZitadelResult < X : Send > {
513513 /// Helper method for skippable zitadel errors to use with `[SkippedErrors]`
514514 fn skip_zitadel_error (
515515 self ,
@@ -518,7 +518,7 @@ pub trait SkipableZitadelResult<X: Send> {
518518 ) -> Option < X > ;
519519}
520520
521- impl < X : Send > SkipableZitadelResult < X > for Result < X > {
521+ impl < X : Send > SkippableZitadelResult < X > for Result < X > {
522522 fn skip_zitadel_error (
523523 self ,
524524 operation : & ' static str ,
You can’t perform that action at this time.
0 commit comments