DependenciesBuilder

Struct DependenciesBuilder 

Source
pub struct DependenciesBuilder {
Show 59 fields pub configuration: Arc<dyn ConfigurationSource>, pub root_logger: Logger, pub sqlite_connection: Option<Arc<SqliteConnection>>, pub sqlite_connection_event_store: Option<Arc<SqliteConnection>>, pub sqlite_connection_cardano_transaction_pool: Option<Arc<SqliteConnectionPool>>, pub stake_store: Option<Arc<StakePoolStore>>, pub snapshot_uploader: Option<Arc<dyn FileUploader>>, pub multi_signer: Option<Arc<dyn MultiSigner>>, pub certificate_repository: Option<Arc<CertificateRepository>>, pub open_message_repository: Option<Arc<OpenMessageRepository>>, pub verification_key_store: Option<Arc<dyn VerificationKeyStorer>>, pub epoch_settings_store: Option<Arc<EpochSettingsStore>>, pub cardano_cli_runner: Option<Box<CardanoCliRunner>>, pub chain_observer: Option<Arc<dyn ChainObserver>>, pub chain_block_reader: Option<Arc<Mutex<dyn ChainBlockReader>>>, pub transaction_repository: Option<Arc<CardanoTransactionRepository>>, pub block_scanner: Option<Arc<dyn BlockScanner>>, pub immutable_digester: Option<Arc<dyn ImmutableDigester>>, pub immutable_file_observer: Option<Arc<dyn ImmutableFileObserver>>, pub immutable_cache_provider: Option<Arc<dyn ImmutableFileDigestCacheProvider>>, pub immutable_file_digest_mapper: Option<Arc<dyn ImmutableFileDigestMapper>>, pub digester: Option<Arc<dyn ImmutableDigester>>, pub file_archiver: Option<Arc<FileArchiver>>, pub snapshotter: Option<Arc<dyn Snapshotter>>, pub certificate_verifier: Option<Arc<dyn CertificateVerifier>>, pub genesis_verifier: Option<Arc<ProtocolGenesisVerifier>>, pub certificate_chain_synchronizer: Option<Arc<dyn CertificateChainSynchronizer>>, pub mithril_signer_registration_leader: Option<Arc<MithrilSignerRegistrationLeader>>, pub mithril_signer_registration_follower: Option<Arc<MithrilSignerRegistrationFollower>>, pub signer_registerer: Option<Arc<dyn SignerRegisterer>>, pub signer_synchronizer: Option<Arc<dyn SignerSynchronizer>>, pub signer_registration_verifier: Option<Arc<dyn SignerRegistrationVerifier>>, pub signer_registration_round_opener: Option<Arc<dyn SignerRegistrationRoundOpener>>, pub era_checker: Option<Arc<EraChecker>>, pub era_reader_adapter: Option<Arc<dyn EraReaderAdapter>>, pub era_reader: Option<Arc<EraReader>>, pub event_transmitter: Option<Arc<TransmitterService<EventMessage>>>, pub event_transmitter_channel: (Option<UnboundedReceiver<EventMessage>>, Option<UnboundedSender<EventMessage>>), pub api_version_provider: Option<Arc<APIVersionProvider>>, pub stake_distribution_service: Option<Arc<dyn StakeDistributionService>>, pub ticker_service: Option<Arc<dyn TickerService>>, pub signer_store: Option<Arc<SignerStore>>, pub signable_seed_builder: Option<Arc<dyn SignableSeedBuilder>>, pub signable_builder_service: Option<Arc<dyn SignableBuilderService>>, pub signed_entity_service: Option<Arc<dyn SignedEntityService>>, pub certifier_service: Option<Arc<dyn CertifierService>>, pub epoch_service: Option<EpochServiceWrapper>, pub mithril_network_configuration_provider: Option<Arc<dyn MithrilNetworkConfigurationProvider>>, pub signed_entity_storer: Option<Arc<dyn SignedEntityStorer>>, pub message_service: Option<Arc<dyn MessageService>>, pub prover_service: Option<Arc<dyn ProverService>>, pub signed_entity_type_lock: Option<Arc<SignedEntityTypeLock>>, pub transactions_importer: Option<Arc<dyn TransactionsImporter>>, pub upkeep_service: Option<Arc<dyn UpkeepService>>, pub single_signature_authenticator: Option<Arc<SingleSignatureAuthenticator>>, pub metrics_service: Option<Arc<MetricsService>>, pub leader_aggregator_client: Option<Arc<AggregatorHttpClient>>, pub protocol_parameters_retriever: Option<Arc<dyn ProtocolParametersRetriever>>, pub stop_signal_channel: Option<(Sender<()>, Receiver<()>)>,
}
Expand description

§Dependencies container builder

This is meant to create SHARED DEPENDENCIES, ie: dependencies instances that must be shared amongst several Tokio tasks. For example, database repositories are NOT shared dependencies and therefor can be created ad hoc whereas the database connection is a shared dependency.

Each shared dependency must implement a build and a get function. The build function creates the dependency, the get function creates the dependency at first call then return a clone of the Arc containing the dependency for all further calls.

Fields§

§configuration: Arc<dyn ConfigurationSource>

Configuration parameters

§root_logger: Logger

Application root logger

§sqlite_connection: Option<Arc<SqliteConnection>>

SQLite database connection

§sqlite_connection_event_store: Option<Arc<SqliteConnection>>

Event store SQLite database connection

§sqlite_connection_cardano_transaction_pool: Option<Arc<SqliteConnectionPool>>

Cardano transactions SQLite database connection pool

§stake_store: Option<Arc<StakePoolStore>>

Stake Store used by the StakeDistributionService It shall be a private dependency.

§snapshot_uploader: Option<Arc<dyn FileUploader>>

Snapshot uploader service.

§multi_signer: Option<Arc<dyn MultiSigner>>

Multisigner service.

§certificate_repository: Option<Arc<CertificateRepository>>

Certificate repository.

§open_message_repository: Option<Arc<OpenMessageRepository>>

Open message repository.

§verification_key_store: Option<Arc<dyn VerificationKeyStorer>>

Verification key store.

§epoch_settings_store: Option<Arc<EpochSettingsStore>>

Epoch settings store.

§cardano_cli_runner: Option<Box<CardanoCliRunner>>

Cardano CLI Runner for the [ChainObserver]

§chain_observer: Option<Arc<dyn ChainObserver>>

Chain observer service.

§chain_block_reader: Option<Arc<Mutex<dyn ChainBlockReader>>>

Chain block reader

§transaction_repository: Option<Arc<CardanoTransactionRepository>>

Cardano transactions repository.

§block_scanner: Option<Arc<dyn BlockScanner>>

Cardano block scanner.

§immutable_digester: Option<Arc<dyn ImmutableDigester>>

Immutable file digester service.

§immutable_file_observer: Option<Arc<dyn ImmutableFileObserver>>

Immutable file observer service.

§immutable_cache_provider: Option<Arc<dyn ImmutableFileDigestCacheProvider>>

Immutable cache provider service.

§immutable_file_digest_mapper: Option<Arc<dyn ImmutableFileDigestMapper>>

Immutable file digest mapper service.

§digester: Option<Arc<dyn ImmutableDigester>>

Digester service.

§file_archiver: Option<Arc<FileArchiver>>

File archiver service.

§snapshotter: Option<Arc<dyn Snapshotter>>

Snapshotter service.

§certificate_verifier: Option<Arc<dyn CertificateVerifier>>

Certificate verifier service.

§genesis_verifier: Option<Arc<ProtocolGenesisVerifier>>

Genesis signature verifier service.

§certificate_chain_synchronizer: Option<Arc<dyn CertificateChainSynchronizer>>

Certificate chain synchronizer service

§mithril_signer_registration_leader: Option<Arc<MithrilSignerRegistrationLeader>>

Mithril signer registration leader service

§mithril_signer_registration_follower: Option<Arc<MithrilSignerRegistrationFollower>>

Mithril signer registration follower service

§signer_registerer: Option<Arc<dyn SignerRegisterer>>

Signer registerer service

§signer_synchronizer: Option<Arc<dyn SignerSynchronizer>>

Signer synchronizer service

§signer_registration_verifier: Option<Arc<dyn SignerRegistrationVerifier>>

Signer registration verifier

§signer_registration_round_opener: Option<Arc<dyn SignerRegistrationRoundOpener>>

Signer registration round opener service

§era_checker: Option<Arc<EraChecker>>

Era checker service

§era_reader_adapter: Option<Arc<dyn EraReaderAdapter>>

Adapter for [EraReader]

§era_reader: Option<Arc<EraReader>>

Era reader service

§event_transmitter: Option<Arc<TransmitterService<EventMessage>>>

Event Transmitter Service

§event_transmitter_channel: (Option<UnboundedReceiver<EventMessage>>, Option<UnboundedSender<EventMessage>>)

Event transmitter Channel Sender endpoint

§api_version_provider: Option<Arc<APIVersionProvider>>

API Version provider

§stake_distribution_service: Option<Arc<dyn StakeDistributionService>>

Stake Distribution Service

§ticker_service: Option<Arc<dyn TickerService>>

Ticker Service

§signer_store: Option<Arc<SignerStore>>

Signer Store

§signable_seed_builder: Option<Arc<dyn SignableSeedBuilder>>

Signable Seed Builder

§signable_builder_service: Option<Arc<dyn SignableBuilderService>>

Signable Builder Service

§signed_entity_service: Option<Arc<dyn SignedEntityService>>

Signed Entity Service

§certifier_service: Option<Arc<dyn CertifierService>>

Certifier service

§epoch_service: Option<EpochServiceWrapper>

Epoch service.

§mithril_network_configuration_provider: Option<Arc<dyn MithrilNetworkConfigurationProvider>>

Mithril network configuration provider

§signed_entity_storer: Option<Arc<dyn SignedEntityStorer>>

Signed Entity storer

§message_service: Option<Arc<dyn MessageService>>

HTTP Message service

§prover_service: Option<Arc<dyn ProverService>>

Prover service

§signed_entity_type_lock: Option<Arc<SignedEntityTypeLock>>

Signed Entity Type Lock

§transactions_importer: Option<Arc<dyn TransactionsImporter>>

Transactions Importer

§upkeep_service: Option<Arc<dyn UpkeepService>>

Upkeep service

§single_signature_authenticator: Option<Arc<SingleSignatureAuthenticator>>

Single signer authenticator

§metrics_service: Option<Arc<MetricsService>>

Metrics service

§leader_aggregator_client: Option<Arc<AggregatorHttpClient>>

Leader aggregator client

§protocol_parameters_retriever: Option<Arc<dyn ProtocolParametersRetriever>>

Protocol parameters retriever

§stop_signal_channel: Option<(Sender<()>, Receiver<()>)>

Stop signal channel

Implementations§

Source§

impl DependenciesBuilder

Source

pub async fn get_chain_observer(&mut self) -> Result<Arc<dyn ChainObserver>>

Return a [ChainObserver]

Source

pub async fn get_cardano_cli_runner(&mut self) -> Result<Box<CardanoCliRunner>>

Return a [CardanoCliRunner]

Source

pub async fn get_chain_block_reader( &mut self, ) -> Result<Arc<Mutex<dyn ChainBlockReader>>>

Chain reader

Source

pub async fn get_block_scanner(&mut self) -> Result<Arc<dyn BlockScanner>>

Block scanner

Source

pub async fn get_immutable_digester( &mut self, ) -> Result<Arc<dyn ImmutableDigester>>

Immutable digester.

Source

pub async fn create_cardano_transactions_preloader( &mut self, ) -> Result<Arc<CardanoTransactionsPreloader>>

Create a CardanoTransactionsPreloader instance.

Source

pub async fn get_stake_distribution_service( &mut self, ) -> Result<Arc<dyn StakeDistributionService>>

Source§

impl DependenciesBuilder

Source

pub async fn get_epoch_service(&mut self) -> Result<EpochServiceWrapper>

EpochService service

Source

pub async fn get_mithril_network_configuration_provider( &mut self, ) -> Result<Arc<dyn MithrilNetworkConfigurationProvider>>

[MithrilNetworkConfigurationProvider][mithril_protocol_config::interface::MithrilNetworkConfigurationProvider] service

Source§

impl DependenciesBuilder

Source

pub async fn get_signed_entity_type_lock( &mut self, ) -> Result<Arc<SignedEntityTypeLock>>

Get the [SignedEntityTypeLock] instance

Source

pub async fn build_message_service(&mut self) -> Result<Arc<dyn MessageService>>

Builds HTTP message service

Source

pub async fn get_message_service(&mut self) -> Result<Arc<dyn MessageService>>

Source

pub async fn build_leader_aggregator_client( &mut self, ) -> Result<Arc<AggregatorHttpClient>>

Builds an [AggregatorHttpClient]

Source

pub async fn get_leader_aggregator_client( &mut self, ) -> Result<Arc<AggregatorHttpClient>>

Returns a leader [AggregatorHttpClient]

Source

pub async fn build_signature_consumer( &mut self, ) -> Result<Arc<dyn SignatureConsumer>>

Source

pub async fn create_signature_processor( &mut self, ) -> Result<Arc<dyn SignatureProcessor>>

Source§

impl DependenciesBuilder

Source

pub async fn build_ticker_service(&mut self) -> Result<Arc<dyn TickerService>>

Create TickerService instance.

Source

pub async fn get_ticker_service(&mut self) -> Result<Arc<dyn TickerService>>

TickerService service

Source

pub async fn get_immutable_file_observer( &mut self, ) -> Result<Arc<dyn ImmutableFileObserver>>

Return a [ImmutableFileObserver] instance.

Source§

impl DependenciesBuilder

Source

pub async fn get_signed_entity_service( &mut self, ) -> Result<Arc<dyn SignedEntityService>>

Source

pub async fn get_snapshotter(&mut self) -> Result<Arc<dyn Snapshotter>>

Snapshotter service.

Source

pub async fn get_snapshot_uploader(&mut self) -> Result<Arc<dyn FileUploader>>

Source§

impl DependenciesBuilder

Source

pub async fn build_certifier_service( &mut self, ) -> Result<Arc<dyn CertifierService>>

Create CertifierService service

Source

pub async fn get_certifier_service( &mut self, ) -> Result<Arc<dyn CertifierService>>

Source

pub async fn get_multi_signer(&mut self) -> Result<Arc<dyn MultiSigner>>

Get a configured multi signer

Source

pub async fn get_certificate_chain_synchronizer( &mut self, ) -> Result<Arc<dyn CertificateChainSynchronizer>>

Source

pub async fn get_certificate_verifier( &mut self, ) -> Result<Arc<dyn CertificateVerifier>>

Source

pub async fn get_genesis_verifier( &mut self, ) -> Result<Arc<ProtocolGenesisVerifier>>

Source

pub async fn get_mithril_signer_registration_leader( &mut self, ) -> Result<Arc<MithrilSignerRegistrationLeader>>

Source

pub async fn get_mithril_signer_registration_follower( &mut self, ) -> Result<Arc<MithrilSignerRegistrationFollower>>

Source

pub async fn get_signer_registerer( &mut self, ) -> Result<Arc<dyn SignerRegisterer>>

Source

pub async fn get_signer_synchronizer( &mut self, ) -> Result<Arc<dyn SignerSynchronizer>>

Source

pub async fn get_signer_registration_verifier( &mut self, ) -> Result<Arc<dyn SignerRegistrationVerifier>>

Source

pub async fn get_signer_registration_round_opener( &mut self, ) -> Result<Arc<dyn SignerRegistrationRoundOpener>>

Source

pub async fn get_single_signature_authenticator( &mut self, ) -> Result<Arc<SingleSignatureAuthenticator>>

Source§

impl DependenciesBuilder

Source

pub async fn build_prover_service(&mut self) -> Result<Arc<dyn ProverService>>

Build Prover service

Source

pub async fn get_prover_service(&mut self) -> Result<Arc<dyn ProverService>>

ProverService service

Source§

impl DependenciesBuilder

Source§

impl DependenciesBuilder

Source

pub async fn get_api_version_provider( &mut self, ) -> Result<Arc<APIVersionProvider>>

Source

pub async fn get_era_reader(&mut self) -> Result<Arc<EraReader>>

[EraReader] service

Source

pub async fn get_era_checker(&mut self) -> Result<Arc<EraChecker>>

[EraReader] service

Source§

impl DependenciesBuilder

Source

pub fn root_logger(&self) -> Logger

Return a copy of the root logger.

Source

pub async fn create_usage_reporter(&mut self) -> Result<UsageReporter>

Create a UsageReporter instance.

Source

pub async fn get_metrics_service(&mut self) -> Result<Arc<MetricsService>>

Source

pub async fn create_event_store(&mut self) -> Result<EventStore>

Create dependencies for the EventStore task.

Source

pub async fn get_event_transmitter_sender( &mut self, ) -> Result<UnboundedSender<EventMessage>>

Return the EventMessage channel sender.

Source

pub async fn get_event_transmitter_receiver( &mut self, ) -> Result<UnboundedReceiver<EventMessage>>

Return the channel receiver setup for the EventStore. Since this receiver is not clonable, it must be called only once.

Source

pub async fn get_event_transmitter( &mut self, ) -> Result<Arc<TransmitterService<EventMessage>>>

Source§

impl DependenciesBuilder

Source

pub async fn build_stop_signal_channel( &mut self, ) -> Result<(Sender<()>, Receiver<()>)>

Builds a stop signal channel

Source

pub async fn get_stop_signal_channel( &mut self, ) -> Result<(Sender<()>, Receiver<()>)>

Get the stop signal channel

Source§

impl DependenciesBuilder

Source

pub async fn drop_sqlite_connections(&self)

Execute cleanup operations on SQLite connections

Source

pub async fn get_sqlite_connection(&mut self) -> Result<Arc<SqliteConnection>>

Get SQLite connection

Source

pub async fn get_event_store_sqlite_connection( &mut self, ) -> Result<Arc<SqliteConnection>>

Get EventStore SQLite connection

Source

pub async fn get_sqlite_connection_cardano_transaction_pool( &mut self, ) -> Result<Arc<SqliteConnectionPool>>

Get SQLite connection pool for the cardano transactions store

Source§

impl DependenciesBuilder

Source

pub async fn get_stake_store(&mut self) -> Result<Arc<StakePoolStore>>

Return a StakePoolStore

Source

pub async fn get_certificate_repository( &mut self, ) -> Result<Arc<CertificateRepository>>

Get a configured CertificateRepository.

Source

pub async fn get_open_message_repository( &mut self, ) -> Result<Arc<OpenMessageRepository>>

Get a configured OpenMessageRepository.

Source

pub async fn get_verification_key_store( &mut self, ) -> Result<Arc<dyn VerificationKeyStorer>>

Get a configured VerificationKeyStorer.

Source

pub async fn get_protocol_parameters_retriever( &mut self, ) -> Result<Arc<dyn ProtocolParametersRetriever>>

Get a configured ProtocolParametersRetriever.

Source

pub async fn get_epoch_settings_store( &mut self, ) -> Result<Arc<EpochSettingsStore>>

Get a configured EpochSettingsStore.

Source

pub async fn get_immutable_cache_provider( &mut self, ) -> Result<Arc<dyn ImmutableFileDigestCacheProvider>>

Get an [ImmutableFileDigestCacheProvider]

Source

pub async fn get_transaction_repository( &mut self, ) -> Result<Arc<CardanoTransactionRepository>>

Transaction repository.

Source

pub async fn get_immutable_file_digest_mapper( &mut self, ) -> Result<Arc<dyn ImmutableFileDigestMapper>>

Immutable digest mapper.

Source

pub async fn get_signer_store(&mut self) -> Result<Arc<SignerStore>>

SignerStore service

Source

pub async fn get_signed_entity_storer( &mut self, ) -> Result<Arc<dyn SignedEntityStorer>>

Source

pub async fn create_signer_importer( &mut self, cexplorer_pools_url: &str, ) -> Result<SignersImporter>

Create a SignersImporter instance.

Source§

impl DependenciesBuilder

Source

pub async fn get_signer_registration_pruning_task( &mut self, ) -> Result<Arc<dyn EpochPruningTask>>

Return a EpochPruningTask instance

Source

pub async fn get_upkeep_service(&mut self) -> Result<Arc<dyn UpkeepService>>

Get the UpkeepService instance

Source§

impl DependenciesBuilder

Source

pub fn new( root_logger: Logger, configuration: Arc<dyn ConfigurationSource>, ) -> Self

Create a new clean dependency builder

Source

pub async fn build_serve_dependencies_container( &mut self, ) -> Result<ServeCommandDependenciesContainer>

Return an unconfigured ServeCommandDependenciesContainer

Source

pub async fn create_aggregator_runner(&mut self) -> Result<AggregatorRuntime>

Create the AggregatorRunner

Source

pub async fn create_http_routes( &mut self, ) -> Result<impl Filter<Extract = (impl Reply + use<>,), Error = Rejection> + Clone + use<>>

Create the HTTP route instance

Source

pub async fn create_genesis_container( &mut self, ) -> Result<GenesisCommandDependenciesContainer>

Create dependencies for genesis commands

Source

pub async fn create_database_command_container( &mut self, ) -> Result<DatabaseCommandDependenciesContainer>

Create dependencies for database command

Source

pub async fn create_tools_command_container( &mut self, ) -> Result<ToolsCommandDependenciesContainer>

Create dependencies for tools command

Source

pub async fn handle_discrepancies_at_startup(&mut self) -> Result<()>

Look for discrepancies in stored data and fix them.

Fix discrepancies for:

  • epoch settings: ensure that the network configuration parameters for the three working epochs window are stored in the database (see [mithril_protocol_config::model::MithrilNetworkConfiguration])
Source

pub async fn vanish(self)

Remove the dependencies builder from memory to release Arc instances.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
§

impl<T> Conv for T

§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> IntoRequest<T> for T

§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<L> LayerExt<L> for L

§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in [Layered].
Source§

impl<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

Source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
Source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

Source§

fn lossy_into(self) -> Dst

Performs the conversion.
Source§

impl<T> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
§

impl<T> Pipe for T
where T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R, ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.
§

impl<T> ErasedDestructor for T
where T: 'static,