pub struct MintClientModule {
pub(crate) federation_id: FederationId,
pub(crate) cfg: MintClientConfig,
pub(crate) root_secret: DerivableSecret,
pub(crate) notifier: ModuleNotifier<MintClientStateMachines>,
pub(crate) client_ctx: ClientContext<Self>,
pub(crate) balance_update_sender: Sender<()>,
pub(crate) tweak_receiver: Receiver<[u8; 16]>,
}Fields§
§federation_id: FederationId§cfg: MintClientConfig§root_secret: DerivableSecret§notifier: ModuleNotifier<MintClientStateMachines>§client_ctx: ClientContext<Self>§balance_update_sender: Sender<()>§tweak_receiver: Receiver<[u8; 16]>Implementations§
Source§impl MintClientModule
impl MintClientModule
pub(crate) async fn select_funding_input( &self, dbtx: &mut DatabaseTransaction<'_>, excess_output: Amount, ) -> Option<Vec<SpendableNote>>
pub(crate) async fn rebalance( &self, dbtx: &mut DatabaseTransaction<'_>, fee: &FeeConsensus, excess_input: Amount, ) -> (Vec<SpendableNote>, Vec<Denomination>)
pub(crate) fn create_input_bundle( operation_id: OperationId, notes: Vec<SpendableNote>, include_receive_sm: bool, amount_unit: AmountUnit, ) -> ClientInputBundle<MintInput, MintClientStateMachines>
Sourcepub(crate) async fn create_output_bundle(
&self,
operation_id: OperationId,
requested_denominations: Vec<Denomination>,
) -> ClientOutputBundle<MintOutput, MintClientStateMachines>
pub(crate) async fn create_output_bundle( &self, operation_id: OperationId, requested_denominations: Vec<Denomination>, ) -> ClientOutputBundle<MintOutput, MintClientStateMachines>
Build the blinded outputs and their output state machines for a reissue transaction.
§Cancel safety
Cancel safe: this only reads pre-ground blinding tweaks from an in-memory channel and constructs values, it performs no database writes. Dropping the future merely discards the tweaks it had taken, which are random (so nothing is lost) and replenished by the background grinder task.
Sourcepub(crate) async fn await_output_sm_success(
&self,
operation_id: OperationId,
outpoint: OutPoint,
) -> Result<()>
pub(crate) async fn await_output_sm_success( &self, operation_id: OperationId, outpoint: OutPoint, ) -> Result<()>
Wait for the output state machine of the given outpoint to reach a terminal state.
§Cancel safety
Cancel safe: this only subscribes to the operation’s state notifications and waits, it performs no database writes. Dropping the future stops the wait; the underlying state machine keeps running in the executor.
Sourcepub async fn get_count_by_denomination(&self) -> BTreeMap<Denomination, u64>
pub async fn get_count_by_denomination(&self) -> BTreeMap<Denomination, u64>
Count the ECash notes in the client’s database by denomination.
pub(crate) async fn get_count_by_denomination_dbtx( &self, dbtx: &mut DatabaseTransaction<'_>, ) -> BTreeMap<Denomination, u64>
Sourcepub async fn send(
&self,
amount: Amount,
custom_meta: Value,
include_invite: bool,
) -> Result<(OperationId, ECash), SendECashError>
pub async fn send( &self, amount: Amount, custom_meta: Value, include_invite: bool, ) -> Result<(OperationId, ECash), SendECashError>
Send ECash for the given amount and return the send operation ID. The
amount will be rounded up to a multiple of 512 msats which is the
smallest denomination used throughout the client. If the rounded
amount cannot be covered with the ecash notes in the client’s
database the client will create a transaction to reissue the
required denominations. To cancel a successful ecash send simply
receive it yourself.
If include_invite is set, the federation’s invite code is embedded in
the returned ecash so a recipient that has not joined the federation can
do so directly from the received ecash.
§Cancel safety
This method is cancel safe. Every database mutation it makes happens
inside a single
autocommit transaction
(spending the notes for the fast path, and creating the change-making
reissue transaction otherwise), so dropping the future either commits
a unit of work in full or leaves the database untouched: notes are
never removed without a persisted operation that produces the ecash or
returns the change. Federation submission is driven by a state machine
in the executor rather than awaited here, so a cancelled call cannot
abort an in-flight reissue; if change-making had already been
submitted it completes on its own and the notes return to the balance.
Sourcepub(crate) async fn send_ecash_dbtx(
&self,
dbtx: &mut DatabaseTransaction<'_>,
remaining_amount: Amount,
custom_meta: Value,
include_invite: bool,
) -> Result<Option<(OperationId, ECash)>, Infallible>
pub(crate) async fn send_ecash_dbtx( &self, dbtx: &mut DatabaseTransaction<'_>, remaining_amount: Amount, custom_meta: Value, include_invite: bool, ) -> Result<Option<(OperationId, ECash)>, Infallible>
Fast path for Self::send: if exact change is already held, spend
those notes and record the send operation. Returns None when exact
change is not available, leaving the caller to make change.
§Cancel safety
All writes go to the passed dbtx, so this inherits the cancel safety
of that transaction: it must be run inside an autocommit (as send
does) for the note spend and the operation log entry to commit or roll
back together.
Sourcepub async fn receive(
&self,
ecash: ECash,
custom_meta: Value,
) -> Result<OperationId, ReceiveECashError>
pub async fn receive( &self, ecash: ECash, custom_meta: Value, ) -> Result<OperationId, ReceiveECashError>
Receive the ECash by reissuing the notes and return the operation ID.
Sourcepub async fn receive_fee_quote(&self, ecash: &ECash) -> Result<FeeQuote>
pub async fn receive_fee_quote(&self, ecash: &ECash) -> Result<FeeQuote>
Computes the exact fee a receive(ecash) would incur given the client’s
current note inventory, without submitting anything.
This runs the same change generation the real receive does
(create_final_inputs_and_outputs, including funding selection and
rebalancing) against a non-committable transaction that is dropped
rather than committed, so the client’s notes are read but left
untouched. The quote is point-in-time: it depends on the current
inventory and can move as notes change.
Sourcepub async fn send_fee_quote(&self, amount: Amount) -> Result<FeeQuote>
pub async fn send_fee_quote(&self, amount: Amount) -> Result<FeeQuote>
Computes the fee a send(amount) would incur given the client’s current
note inventory, without sending anything.
A send is free when the client’s existing notes can cover the (rounded)
amount exactly — it just hands those notes out. Otherwise the send first
reissues itself the right denominations, and that self-reissue
transaction is the only thing a send ever pays a fee for. This quote
mirrors that: it returns FeeQuote::ZERO when exact change is
available, and otherwise quotes the reissue the same way the real send
submits it (explicit outputs represent_amount(amount), no explicit
inputs) via the shared, module-agnostic fee quote over the real
inventory. The quote is point-in-time: it depends on the current
inventory and can move as notes change.
Sourcepub(crate) async fn can_make_exact_change(
&self,
remaining_amount: Amount,
) -> bool
pub(crate) async fn can_make_exact_change( &self, remaining_amount: Amount, ) -> bool
Returns whether the client’s current notes can be handed out to cover
amount exactly — the free path in Self::send — without modifying
the inventory. Shares its greedy selection with
Self::send_ecash_dbtx via Self::select_exact_change.
Sourcepub(crate) async fn select_exact_change(
dbtx: &mut DatabaseTransaction<'_>,
remaining_amount: Amount,
) -> Option<Vec<SpendableNote>>
pub(crate) async fn select_exact_change( dbtx: &mut DatabaseTransaction<'_>, remaining_amount: Amount, ) -> Option<Vec<SpendableNote>>
Greedily selects spendable notes (largest-first) summing to exactly
remaining_amount, or None if the inventory can’t make exact change.
Reads the DB but does not modify it. Single source of truth for the free
(hand-out-existing-notes) selection shared by Self::send_ecash_dbtx
and Self::can_make_exact_change.
Sourcepub async fn await_final_receive_operation_state(
&self,
operation_id: OperationId,
) -> Result<FinalReceiveOperationState>
pub async fn await_final_receive_operation_state( &self, operation_id: OperationId, ) -> Result<FinalReceiveOperationState>
Await the final state of the receive operation.
pub(crate) async fn remove_spendable_note( &self, dbtx: &mut DatabaseTransaction<'_>, spendable_note: &SpendableNote, )
Trait Implementations§
Source§impl ClientModule for MintClientModule
impl ClientModule for MintClientModule
type Init = MintClientInit
Source§type Common = MintModuleTypes
type Common = MintModuleTypes
Source§type Backup = NoModuleBackup
type Backup = NoModuleBackup
Source§type ModuleStateMachineContext = MintClientContext
type ModuleStateMachineContext = MintClientContext
Source§type States = MintClientStateMachines
type States = MintClientStateMachines
fn context(&self) -> Self::ModuleStateMachineContext
Source§fn input_fee(
&self,
amounts: &Amounts,
_input: &<Self::Common as ModuleCommon>::Input,
) -> Option<Amounts>
fn input_fee( &self, amounts: &Amounts, _input: &<Self::Common as ModuleCommon>::Input, ) -> Option<Amounts>
Source§fn output_fee(
&self,
amounts: &Amounts,
_output: &<Self::Common as ModuleCommon>::Output,
) -> Option<Amounts>
fn output_fee( &self, amounts: &Amounts, _output: &<Self::Common as ModuleCommon>::Output, ) -> Option<Amounts>
fn handle_cli_command<'life0, 'life1, 'async_trait>(
&'life0 self,
args: &'life1 [OsString],
) -> Pin<Box<dyn Future<Output = Result<Value>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Source§fn supports_being_primary(&self) -> PrimaryModuleSupport
fn supports_being_primary(&self) -> PrimaryModuleSupport
Source§fn create_final_inputs_and_outputs<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
dbtx: &'life1 mut DatabaseTransaction<'life2>,
operation_id: OperationId,
unit: AmountUnit,
input_amount: Amount,
output_amount: Amount,
) -> Pin<Box<dyn Future<Output = Result<(ClientInputBundle<MintInput, MintClientStateMachines>, ClientOutputBundle<MintOutput, MintClientStateMachines>)>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn create_final_inputs_and_outputs<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
dbtx: &'life1 mut DatabaseTransaction<'life2>,
operation_id: OperationId,
unit: AmountUnit,
input_amount: Amount,
output_amount: Amount,
) -> Pin<Box<dyn Future<Output = Result<(ClientInputBundle<MintInput, MintClientStateMachines>, ClientOutputBundle<MintOutput, MintClientStateMachines>)>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Source§fn await_primary_module_output<'life0, 'async_trait>(
&'life0 self,
operation_id: OperationId,
outpoint: OutPoint,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn await_primary_module_output<'life0, 'async_trait>(
&'life0 self,
operation_id: OperationId,
outpoint: OutPoint,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Self::create_final_inputs_and_outputs to become available. This
function returning typically implies a change in the output of
Self::get_balance.Source§fn get_balance<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
dbtx: &'life1 mut DatabaseTransaction<'life2>,
unit: AmountUnit,
) -> Pin<Box<dyn Future<Output = Amount> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn get_balance<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
dbtx: &'life1 mut DatabaseTransaction<'life2>,
unit: AmountUnit,
) -> Pin<Box<dyn Future<Output = Amount> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Source§fn subscribe_balance_changes<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = BoxStream<'static, ()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn subscribe_balance_changes<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = BoxStream<'static, ()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn decoder() -> Decoder
fn kind() -> ModuleKind
Source§fn start<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: Sync + 'async_trait,
fn start<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: Sync + 'async_trait,
fn handle_rpc<'life0, 'async_trait>(
&'life0 self,
_method: String,
_request: Value,
) -> Pin<Box<dyn Future<Output = Pin<Box<dyn Stream<Item = Result<Value, Error>> + Send + 'life0>>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: Sync + 'async_trait,
fn supports_backup(&self) -> bool
fn backup<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Self::Backup, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: Sync + 'async_trait,
Source§fn get_balances<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
_dbtx: &'life1 mut DatabaseTransaction<'life2>,
) -> Pin<Box<dyn Future<Output = Amounts> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: Sync + 'async_trait,
fn get_balances<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
_dbtx: &'life1 mut DatabaseTransaction<'life2>,
) -> Pin<Box<dyn Future<Output = Amounts> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: Sync + 'async_trait,
Source§fn leave<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
_dbtx: &'life1 mut DatabaseTransaction<'life2>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: Sync + 'async_trait,
fn leave<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
_dbtx: &'life1 mut DatabaseTransaction<'life2>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: Sync + 'async_trait,
Auto Trait Implementations§
impl Freeze for MintClientModule
impl !RefUnwindSafe for MintClientModule
impl Send for MintClientModule
impl Sync for MintClientModule
impl !Unpin for MintClientModule
impl !UnwindSafe for MintClientModule
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
§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
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> IClientModule for Twhere
T: ClientModule,
impl<T> IClientModule for Twhere
T: ClientModule,
fn as_any(&self) -> &(dyn Any + Send + Sync + 'static)
fn as_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>
fn decoder(&self) -> Decoder
fn context(&self, instance: u16) -> DynContext
fn start<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
T: 'async_trait,
fn handle_cli_command<'life0, 'life1, 'async_trait>(
&'life0 self,
args: &'life1 [OsString],
) -> Pin<Box<dyn Future<Output = Result<Value, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
T: 'async_trait,
fn handle_rpc<'life0, 'async_trait>(
&'life0 self,
method: String,
request: Value,
) -> Pin<Box<dyn Future<Output = Pin<Box<dyn Stream<Item = Result<Value, Error>> + Send + 'life0>>> + Send + 'async_trait>>where
'life0: 'async_trait,
T: 'async_trait,
fn input_fee(&self, amount: &Amounts, input: &DynInput) -> Option<Amounts>
fn output_fee(&self, amount: &Amounts, output: &DynOutput) -> Option<Amounts>
fn supports_backup(&self) -> bool
fn backup<'life0, 'async_trait>(
&'life0 self,
module_instance_id: u16,
) -> Pin<Box<dyn Future<Output = Result<DynModuleBackup, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
T: 'async_trait,
fn supports_being_primary(&self) -> PrimaryModuleSupport
fn create_final_inputs_and_outputs<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
module_instance: u16,
dbtx: &'life1 mut DatabaseTransaction<'life2>,
operation_id: OperationId,
unit: AmountUnit,
input_amount: Amount,
output_amount: Amount,
) -> Pin<Box<dyn Future<Output = Result<(ClientInputBundle, ClientOutputBundle), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
T: 'async_trait,
fn await_primary_module_output<'life0, 'async_trait>(
&'life0 self,
operation_id: OperationId,
out_point: OutPoint,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
T: 'async_trait,
fn get_balance<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
module_instance: u16,
dbtx: &'life1 mut DatabaseTransaction<'life2>,
unit: AmountUnit,
) -> Pin<Box<dyn Future<Output = Amount> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
T: 'async_trait,
fn subscribe_balance_changes<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Pin<Box<dyn Stream<Item = ()> + Send>>> + Send + 'async_trait>>where
'life0: 'async_trait,
T: 'async_trait,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
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) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
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
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
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
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
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
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> PossiblyOption<T> for T
impl<T> PossiblyOption<T> for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.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
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.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
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.