pub trait FirebaseEmulatorAuthService<ApiHttpClientT>
where Self: Send + Sync, ApiHttpClientT: ApiHttpClient + Send + Sync,
{ // Required methods fn get_emulator_client(&self) -> &ApiHttpClientT; fn get_emulator_auth_uri_builder(&self) -> &ApiUriBuilder; // Provided methods fn clear_all_users<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(), Report<ApiClientError>>> + Send + 'async_trait>> where Self: Sync + 'async_trait, 'life0: 'async_trait { ... } fn get_emulator_configuration<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<EmulatorConfiguration, Report<ApiClientError>>> + Send + 'async_trait>> where Self: Sync + 'async_trait, 'life0: 'async_trait { ... } fn patch_emulator_configuration<'life0, 'async_trait>( &'life0 self, configuration: EmulatorConfiguration ) -> Pin<Box<dyn Future<Output = Result<EmulatorConfiguration, Report<ApiClientError>>> + Send + 'async_trait>> where Self: Sync + 'async_trait, 'life0: 'async_trait { ... } fn get_oob_codes<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<Vec<OobCode>, Report<ApiClientError>>> + Send + 'async_trait>> where Self: Sync + 'async_trait, 'life0: 'async_trait { ... } fn get_sms_verification_codes<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<SmsVerificationCodes, Report<ApiClientError>>> + Send + 'async_trait>> where Self: Sync + 'async_trait, 'life0: 'async_trait { ... } }

Required Methods§

Provided Methods§

source

fn clear_all_users<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(), Report<ApiClientError>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait, 'life0: 'async_trait,

Delete all users within emulator

source

fn get_emulator_configuration<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<EmulatorConfiguration, Report<ApiClientError>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait, 'life0: 'async_trait,

Get current emulator configuration

source

fn patch_emulator_configuration<'life0, 'async_trait>( &'life0 self, configuration: EmulatorConfiguration ) -> Pin<Box<dyn Future<Output = Result<EmulatorConfiguration, Report<ApiClientError>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait, 'life0: 'async_trait,

Update emulator configuration

source

fn get_oob_codes<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<Vec<OobCode>, Report<ApiClientError>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait, 'life0: 'async_trait,

Fetch all OOB codes within emulator

source

fn get_sms_verification_codes<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<SmsVerificationCodes, Report<ApiClientError>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait, 'life0: 'async_trait,

Fetch all SMS codes within emulator

Implementors§

source§

impl<ApiHttpClientT> FirebaseEmulatorAuthService<ApiHttpClientT> for FirebaseAuth<ApiHttpClientT>
where ApiHttpClientT: ApiHttpClient + Send + Sync,