pub struct SystemContext<TYPES: NodeType, I: NodeImplementation<TYPES>, V: Versions> {Show 19 fields
pub(crate) public_key: TYPES::SignatureKey,
pub(crate) private_key: <TYPES::SignatureKey as SignatureKey>::PrivateKey,
pub(crate) state_private_key: <TYPES::StateSignatureKey as StateSignatureKey>::StatePrivateKey,
pub config: HotShotConfig<TYPES>,
pub network: Arc<I::Network>,
pub membership_coordinator: EpochMembershipCoordinator<TYPES>,
pub(crate) metrics: Arc<ConsensusMetricsValue>,
pub(crate) consensus: OuterConsensus<TYPES>,
pub(crate) instance_state: Arc<TYPES::InstanceState>,
pub(crate) start_view: TYPES::View,
pub(crate) start_epoch: Option<TYPES::Epoch>,
pub(crate) output_event_stream: (Sender<Event<TYPES>>, InactiveReceiver<Event<TYPES>>),
pub(crate) external_event_stream: (Sender<Event<TYPES>>, InactiveReceiver<Event<TYPES>>),
pub(crate) anchored_leaf: Leaf2<TYPES>,
pub(crate) internal_event_stream: (Sender<Arc<HotShotEvent<TYPES>>>, InactiveReceiver<Arc<HotShotEvent<TYPES>>>),
pub id: u64,
pub storage: I::Storage,
pub storage_metrics: Arc<StorageMetricsValue>,
pub upgrade_lock: UpgradeLock<TYPES, V>,
}
Expand description
Holds the state needed to participate in HotShot
consensus
Fields§
§public_key: TYPES::SignatureKey
The public key of this node
private_key: <TYPES::SignatureKey as SignatureKey>::PrivateKey
The private key of this node
state_private_key: <TYPES::StateSignatureKey as StateSignatureKey>::StatePrivateKey
The private key to sign the light client state
config: HotShotConfig<TYPES>
Configuration items for this hotshot instance
network: Arc<I::Network>
The underlying network
membership_coordinator: EpochMembershipCoordinator<TYPES>
Memberships used by consensus
metrics: Arc<ConsensusMetricsValue>
the metrics that the implementor is using.
consensus: OuterConsensus<TYPES>
The hotstuff implementation
instance_state: Arc<TYPES::InstanceState>
Immutable instance state
start_view: TYPES::View
The view to enter when first starting consensus
start_epoch: Option<TYPES::Epoch>
The epoch to enter when first starting consensus
output_event_stream: (Sender<Event<TYPES>>, InactiveReceiver<Event<TYPES>>)
Access to the output event stream.
external_event_stream: (Sender<Event<TYPES>>, InactiveReceiver<Event<TYPES>>)
External event stream for communication with the application.
anchored_leaf: Leaf2<TYPES>
Anchored leaf provided by the initializer.
internal_event_stream: (Sender<Arc<HotShotEvent<TYPES>>>, InactiveReceiver<Arc<HotShotEvent<TYPES>>>)
access to the internal event stream, in case we need to, say, shut something down
id: u64
uid for instrumentation
storage: I::Storage
Reference to the internal storage for consensus datum.
storage_metrics: Arc<StorageMetricsValue>
Storage metrics
upgrade_lock: UpgradeLock<TYPES, V>
shared lock for upgrade information
Implementations§
Source§impl<TYPES: NodeType, I: NodeImplementation<TYPES>, V: Versions> SystemContext<TYPES, I, V>
impl<TYPES: NodeType, I: NodeImplementation<TYPES>, V: Versions> SystemContext<TYPES, I, V>
Sourcepub async fn new(
public_key: TYPES::SignatureKey,
private_key: <TYPES::SignatureKey as SignatureKey>::PrivateKey,
state_private_key: <TYPES::StateSignatureKey as StateSignatureKey>::StatePrivateKey,
nonce: u64,
config: HotShotConfig<TYPES>,
memberships: EpochMembershipCoordinator<TYPES>,
network: Arc<I::Network>,
initializer: HotShotInitializer<TYPES>,
consensus_metrics: ConsensusMetricsValue,
storage: I::Storage,
storage_metrics: StorageMetricsValue,
) -> Arc<Self>
pub async fn new( public_key: TYPES::SignatureKey, private_key: <TYPES::SignatureKey as SignatureKey>::PrivateKey, state_private_key: <TYPES::StateSignatureKey as StateSignatureKey>::StatePrivateKey, nonce: u64, config: HotShotConfig<TYPES>, memberships: EpochMembershipCoordinator<TYPES>, network: Arc<I::Network>, initializer: HotShotInitializer<TYPES>, consensus_metrics: ConsensusMetricsValue, storage: I::Storage, storage_metrics: StorageMetricsValue, ) -> Arc<Self>
Creates a new Arc<SystemContext>
with the given configuration options.
To do a full initialization, use fn init
instead, which will set up background tasks as
well.
Use this instead of init
if you want to start the tasks manually
§Panics
Panics if storage migration fails.
Sourcepub async fn new_from_channels(
public_key: TYPES::SignatureKey,
private_key: <TYPES::SignatureKey as SignatureKey>::PrivateKey,
state_private_key: <TYPES::StateSignatureKey as StateSignatureKey>::StatePrivateKey,
nonce: u64,
config: HotShotConfig<TYPES>,
membership_coordinator: EpochMembershipCoordinator<TYPES>,
network: Arc<I::Network>,
initializer: HotShotInitializer<TYPES>,
consensus_metrics: ConsensusMetricsValue,
storage: I::Storage,
storage_metrics: StorageMetricsValue,
internal_channel: (Sender<Arc<HotShotEvent<TYPES>>>, Receiver<Arc<HotShotEvent<TYPES>>>),
external_channel: (Sender<Event<TYPES>>, Receiver<Event<TYPES>>),
) -> Arc<Self>
pub async fn new_from_channels( public_key: TYPES::SignatureKey, private_key: <TYPES::SignatureKey as SignatureKey>::PrivateKey, state_private_key: <TYPES::StateSignatureKey as StateSignatureKey>::StatePrivateKey, nonce: u64, config: HotShotConfig<TYPES>, membership_coordinator: EpochMembershipCoordinator<TYPES>, network: Arc<I::Network>, initializer: HotShotInitializer<TYPES>, consensus_metrics: ConsensusMetricsValue, storage: I::Storage, storage_metrics: StorageMetricsValue, internal_channel: (Sender<Arc<HotShotEvent<TYPES>>>, Receiver<Arc<HotShotEvent<TYPES>>>), external_channel: (Sender<Event<TYPES>>, Receiver<Event<TYPES>>), ) -> Arc<Self>
Creates a new Arc<SystemContext>
with the given configuration options.
To do a full initialization, use fn init
instead, which will set up background tasks as
well.
Use this function if you want to use some preexisting channels and to spin up the tasks and start consensus manually. Mostly useful for tests
Sourcepub async fn start_consensus(&self)
pub async fn start_consensus(&self)
“Starts” consensus by sending a Qc2Formed
, ViewChange
events
§Panics
Panics if sending genesis fails
Sourcepub(crate) async fn send_external_event(&self, event: Event<TYPES>)
pub(crate) async fn send_external_event(&self, event: Event<TYPES>)
Emit an external event
Sourcepub async fn publish_transaction_async(
&self,
transaction: TYPES::Transaction,
) -> Result<(), HotShotError<TYPES>>
pub async fn publish_transaction_async( &self, transaction: TYPES::Transaction, ) -> Result<(), HotShotError<TYPES>>
Publishes a transaction asynchronously to the network.
§Errors
Always returns Ok; does not return an error if the transaction couldn’t be published to the network
Sourcepub fn consensus(&self) -> Arc<RwLock<Consensus<TYPES>>>
pub fn consensus(&self) -> Arc<RwLock<Consensus<TYPES>>>
Returns a copy of the consensus struct
Sourcepub fn instance_state(&self) -> Arc<TYPES::InstanceState>
pub fn instance_state(&self) -> Arc<TYPES::InstanceState>
Returns a copy of the instance state
Sourcepub async fn decided_leaf(&self) -> Leaf2<TYPES>
pub async fn decided_leaf(&self) -> Leaf2<TYPES>
Returns a copy of the last decided leaf
§Panics
Panics if internal leaf for consensus is inconsistent
Sourcepub fn try_decided_leaf(&self) -> Option<Leaf2<TYPES>>
pub fn try_decided_leaf(&self) -> Option<Leaf2<TYPES>>
[Non-blocking] instantly returns a copy of the last decided leaf if
it is available to be read. If not, we return None
.
§Panics
Panics if internal state for consensus is inconsistent
Sourcepub async fn decided_state(&self) -> Arc<TYPES::ValidatedState>
pub async fn decided_state(&self) -> Arc<TYPES::ValidatedState>
Returns the last decided validated state.
§Panics
Panics if internal state for consensus is inconsistent
Sourcepub async fn state(
&self,
view: TYPES::View,
) -> Option<Arc<TYPES::ValidatedState>>
pub async fn state( &self, view: TYPES::View, ) -> Option<Arc<TYPES::ValidatedState>>
Get the validated state from a given view
.
Returns the requested state, if the SystemContext
is tracking this view. Consensus
tracks views that have not yet been decided but could be in the future. This function may
return None
if the requested view has already been decided (but see
decided_state
) or if there is no path for the requested
view to ever be decided.
Sourcepub async fn init(
public_key: TYPES::SignatureKey,
private_key: <TYPES::SignatureKey as SignatureKey>::PrivateKey,
state_private_key: <TYPES::StateSignatureKey as StateSignatureKey>::StatePrivateKey,
node_id: u64,
config: HotShotConfig<TYPES>,
memberships: EpochMembershipCoordinator<TYPES>,
network: Arc<I::Network>,
initializer: HotShotInitializer<TYPES>,
consensus_metrics: ConsensusMetricsValue,
storage: I::Storage,
storage_metrics: StorageMetricsValue,
) -> Result<(SystemContextHandle<TYPES, I, V>, Sender<Arc<HotShotEvent<TYPES>>>, Receiver<Arc<HotShotEvent<TYPES>>>), HotShotError<TYPES>>
pub async fn init( public_key: TYPES::SignatureKey, private_key: <TYPES::SignatureKey as SignatureKey>::PrivateKey, state_private_key: <TYPES::StateSignatureKey as StateSignatureKey>::StatePrivateKey, node_id: u64, config: HotShotConfig<TYPES>, memberships: EpochMembershipCoordinator<TYPES>, network: Arc<I::Network>, initializer: HotShotInitializer<TYPES>, consensus_metrics: ConsensusMetricsValue, storage: I::Storage, storage_metrics: StorageMetricsValue, ) -> Result<(SystemContextHandle<TYPES, I, V>, Sender<Arc<HotShotEvent<TYPES>>>, Receiver<Arc<HotShotEvent<TYPES>>>), HotShotError<TYPES>>
Initializes a new SystemContext
and does the work of setting up all the background tasks
Assumes networking implementation is already primed.
Underlying HotShot
instance starts out paused, and must be unpaused
Upon encountering an unrecoverable error, such as a failure to send to a broadcast channel,
the HotShot
instance will log the error and shut down.
To construct a SystemContext
without setting up tasks, use fn new
instead.
§Errors
Can throw an error if Self::new
fails.
Sourcepub fn next_view_timeout(&self) -> u64
pub fn next_view_timeout(&self) -> u64
return the timeout for a view for self
Source§impl<TYPES: NodeType, I: NodeImplementation<TYPES>, V: Versions> SystemContext<TYPES, I, V>
impl<TYPES: NodeType, I: NodeImplementation<TYPES>, V: Versions> SystemContext<TYPES, I, V>
Sourcepub async fn run_tasks(&self) -> SystemContextHandle<TYPES, I, V>
pub async fn run_tasks(&self) -> SystemContextHandle<TYPES, I, V>
Spawn all tasks that operate on SystemContextHandle
.
For a list of which tasks are being spawned, see this module’s documentation.
Trait Implementations§
Source§impl<TYPES: NodeType, I: NodeImplementation<TYPES>, V: Versions> Clone for SystemContext<TYPES, I, V>
impl<TYPES: NodeType, I: NodeImplementation<TYPES>, V: Versions> Clone for SystemContext<TYPES, I, V>
Auto Trait Implementations§
impl<TYPES, I, V> Freeze for SystemContext<TYPES, I, V>where
<TYPES as NodeType>::SignatureKey: Freeze,
<<TYPES as NodeType>::SignatureKey as SignatureKey>::PrivateKey: Freeze,
<<TYPES as NodeType>::StateSignatureKey as StateSignatureKey>::StatePrivateKey: Freeze,
<TYPES as NodeType>::View: Freeze,
<I as NodeImplementation<TYPES>>::Storage: Freeze,
<TYPES as NodeType>::Epoch: Freeze,
<TYPES as NodeType>::BlockHeader: Freeze,
<TYPES as NodeType>::BlockPayload: Freeze,
<<TYPES as NodeType>::SignatureKey as SignatureKey>::QcType: Freeze,
impl<TYPES, I, V> !RefUnwindSafe for SystemContext<TYPES, I, V>
impl<TYPES, I, V> Send for SystemContext<TYPES, I, V>
impl<TYPES, I, V> Sync for SystemContext<TYPES, I, V>
impl<TYPES, I, V> Unpin for SystemContext<TYPES, I, V>where
<TYPES as NodeType>::SignatureKey: Unpin,
<<TYPES as NodeType>::SignatureKey as SignatureKey>::PrivateKey: Unpin,
<<TYPES as NodeType>::StateSignatureKey as StateSignatureKey>::StatePrivateKey: Unpin,
<TYPES as NodeType>::View: Unpin,
<I as NodeImplementation<TYPES>>::Storage: Unpin,
<TYPES as NodeType>::Epoch: Unpin,
<TYPES as NodeType>::BlockHeader: Unpin,
<TYPES as NodeType>::BlockPayload: Unpin,
V: Unpin,
<<TYPES as NodeType>::SignatureKey as SignatureKey>::QcType: Unpin,
TYPES: Unpin,
<<TYPES as NodeType>::SignatureKey as SignatureKey>::StakeTableEntry: Unpin,
<TYPES as NodeType>::StateSignatureKey: Unpin,
impl<TYPES, I, V> !UnwindSafe for SystemContext<TYPES, I, V>
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
§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,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Conv for T
impl<T> Conv for T
§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
§fn deserialize(
&self,
deserializer: &mut D,
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>
§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>
. Box<dyn Any>
can
then be further downcast
into Box<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>
. Rc<Any>
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> 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> 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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 more§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
§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> 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.