pub struct SelfProfiler {
    profiler: Profiler,
    event_filter_mask: EventFilter,
    string_cache: RwLock<FxHashMap<String, StringId>>,
    query_event_kind: StringId,
    generic_activity_event_kind: StringId,
    incremental_load_result_event_kind: StringId,
    incremental_result_hashing_event_kind: StringId,
    query_blocked_event_kind: StringId,
    query_cache_hit_event_kind: StringId,
    artifact_size_event_kind: StringId,
}

Fields

profiler: Profilerevent_filter_mask: EventFilterstring_cache: RwLock<FxHashMap<String, StringId>>query_event_kind: StringIdgeneric_activity_event_kind: StringIdincremental_load_result_event_kind: StringIdincremental_result_hashing_event_kind: StringIdquery_blocked_event_kind: StringIdquery_cache_hit_event_kind: StringIdartifact_size_event_kind: StringId

Implementations

Allocates a new string in the profiling data. Does not do any caching or deduplication.

Gets a StringId for the given string. This method makes sure that any strings going through it will only be allocated once in the profiling data.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 160 bytes