AsyncScope

Struct AsyncScope 

Source
pub struct AsyncScope<C: CategoryString = &'static CStr, S: AsTraceStrRef = &'static CStr> { /* private fields */ }
Expand description

AsyncScope maintains state around the context of async events generated via the async_enter! macro.

Implementations§

Source§

impl<C: CategoryString, S: AsTraceStrRef> AsyncScope<C, S>

Source

pub fn begin(id: Id, category: C, name: S, args: &[Arg<'_>]) -> Self

Starts a new async event scope, generating a begin event now, and ended when the object is dropped.

Source

pub fn end(self, args: &[Arg<'_>])

Manually end the async event scope with args instead of waiting until the guard is dropped (which would end the event scope with an empty args).

Trait Implementations§

Source§

impl<C: CategoryString, S: AsTraceStrRef> Drop for AsyncScope<C, S>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<C, S> Freeze for AsyncScope<C, S>
where C: Freeze, S: Freeze,

§

impl<C, S> RefUnwindSafe for AsyncScope<C, S>

§

impl<C, S> Send for AsyncScope<C, S>
where C: Send, S: Send,

§

impl<C, S> Sync for AsyncScope<C, S>
where C: Sync, S: Sync,

§

impl<C, S> Unpin for AsyncScope<C, S>
where C: Unpin, S: Unpin,

§

impl<C, S> UnwindSafe for AsyncScope<C, S>
where C: UnwindSafe, S: UnwindSafe,

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

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

§

fn vzip(self) -> V