enum

Tracing::FmtSpan

Inherits Enum < Comparable < Value < Object

Controls which span lifecycle events the FmtLayer displays. Ported from upstream tracing_subscriber::fmt::format::FmtSpan.

Constants

NONE = 0_u8
NEW = 1_u8
ENTER = 2_u8
EXIT = 4_u8
CLOSE = 8_u8
ACTIVE = 6_u8
FULL = 255_u8
None = 0_u8
All = 255_u8

Instance methods

active?

Returns true if this enum value contains ACTIVE

Source
close?

Returns true if this enum value contains CLOSE

Source
enter?

Returns true if this enum value contains ENTER

Source
exit?

Returns true if this enum value contains EXIT

Source
full?

Returns true if this enum value contains FULL

Source
new?

Returns true if this enum value contains NEW

Source
none?

Returns true if this enum value contains NONE

Source