[][src]Struct xi_trace::Config

pub struct Config { /* fields omitted */ }

How tracing should be configured.

Methods

impl Config[src]

pub fn with_limit_bytes(size: usize) -> Self[src]

The maximum number of bytes the tracing data should take up. This limit won't be exceeded by the underlying storage itself (i.e. rounds down).

pub fn with_limit_count(limit: usize) -> Self[src]

The maximum number of entries the tracing data should allow. Total storage allocated will be limit * size_of

pub fn default() -> Self[src]

The default amount of storage to allocate for tracing. Currently 1 MB.

pub fn max_size_in_bytes(self) -> usize[src]

The maximum amount of space the tracing data will take up. This does not account for any overhead of storing the data itself (i.e. pointer to the heap, counters, etc); just the data itself.

pub fn max_samples(self) -> usize[src]

The maximum number of samples that should be stored.

Trait Implementations

impl Copy for Config[src]

impl Clone for Config[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Config

impl Unpin for Config

impl Sync for Config

impl UnwindSafe for Config

impl RefUnwindSafe for Config

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]