pub trait FirebaseEmulatorAuthService<ApiHttpClientT>{
// 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§
fn get_emulator_client(&self) -> &ApiHttpClientT
fn get_emulator_auth_uri_builder(&self) -> &ApiUriBuilder
Provided Methods§
sourcefn 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 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
sourcefn 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 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
sourcefn 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 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
sourcefn 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_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
sourcefn 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,
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