Trait z::traits::Trace [] [src]

pub trait Trace: Copy {
    type Id: TraceId;
    fn label(u32) -> &'static str;
    fn tag(&self) -> u32;
}

TODO FITZGEN

We require Copy because we can't run Drop implementations, and we don't want to leak all over.

Associated Types

Required Methods

Implementors