Struct console_api::Attribute
source · [−]Expand description
State attributes of an entity. These are dependent on the type of the entity.
For example, a timer resource will have a duration, while a semaphore resource may have a permit count. Likewise, the async ops of a semaphore may have attributes indicating how many permits they are trying to acquire vs how many are acquired. These values may change over time. Therefore, they live in the runtime stats rather than the static data describing the entity.
Fields
field: Option<Field>
The key-value pair for the attribute
unit: Option<String>
Some values carry a unit of measurement. For example, a duration carries an associated unit of time, such as “ms” for milliseconds.
Implementations
Trait Implementations
Returns the encoded length of the message without a length delimiter.
Encodes the message to a buffer. Read more
Encodes the message to a newly allocated buffer.
Encodes the message with a length-delimiter to a buffer. Read more
Encodes the message with a length-delimiter to a newly allocated buffer.
Decodes an instance of the message from a buffer. Read more
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Decodes an instance of the message from a buffer, and merges it into self
. Read more
Decodes a length-delimited instance of the message from buffer, and
merges it into self
. Read more
Auto Trait Implementations
impl RefUnwindSafe for Attribute
impl UnwindSafe for Attribute
Blanket Implementations
Mutably borrows from an owned value. Read more
Wrap the input message T
in a tonic::Request
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more