Struct await_tree::Registry

source ·
pub struct Registry(/* private fields */);
Expand description

The registry of multiple await-trees.

Can be cheaply cloned to share the same registry.

Implementations§

source§

impl Registry

source

pub fn new(config: Config) -> Self

Create a new registry with given config.

source

pub fn register(&self, key: impl Key, root_span: impl Into<Span>) -> TreeRoot

Register with given key. Returns a TreeRoot that can be used to instrument a future.

If the key already exists, a new TreeRoot is returned and the reference to the old TreeRoot is dropped.

source

pub fn register_anonymous(&self, root_span: impl Into<Span>) -> TreeRoot

Register an anonymous await-tree without specifying a key. Returns a TreeRoot that can be used to instrument a future.

Anonymous await-trees are not able to be retrieved through the Registry::get method. Use Registry::collect_anonymous or Registry::collect_all to collect them.

source

pub fn get(&self, key: impl Key) -> Option<Tree>

Get a clone of the await-tree with given key.

Returns None if the key does not exist or the tree root has been dropped.

source

pub fn clear(&self)

Remove all the registered await-trees.

source

pub fn collect<K: Key + Clone>(&self) -> Vec<(K, Tree)>

Collect the snapshots of all await-trees with the key of type K.

source

pub fn collect_anonymous(&self) -> Vec<Tree>

Collect the snapshots of all await-trees registered with Registry::register_anonymous.

source

pub fn collect_all(&self) -> Vec<(AnyKey, Tree)>

Collect the snapshots of all await-trees regardless of the key type.

Trait Implementations§

source§

impl Clone for Registry

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Registry

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> 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<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

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

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

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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