pub enum Value {
Int64(i64),
Double(f64),
String(String),
Bool(bool),
UnixMilli(i64),
Bytes(Vec<u8>),
}Variants
Int64(i64)
Represents a int64 value.
Double(f64)
Represents a double value.
String(String)
Represents a string value.
Bool(bool)
Represents a boolean value.
UnixMilli(i64)
Represents a unix milliseconds value.
Bytes(Vec<u8>)
Represents a bytes value.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Value
impl UnwindSafe for Value
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