Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- data AnyValue
- data AnyValue'Value
- _AnyValue'StringValue :: Prism' AnyValue'Value Text
- _AnyValue'BoolValue :: Prism' AnyValue'Value Bool
- _AnyValue'IntValue :: Prism' AnyValue'Value Int64
- _AnyValue'DoubleValue :: Prism' AnyValue'Value Double
- _AnyValue'ArrayValue :: Prism' AnyValue'Value ArrayValue
- _AnyValue'KvlistValue :: Prism' AnyValue'Value KeyValueList
- _AnyValue'BytesValue :: Prism' AnyValue'Value ByteString
- data ArrayValue
- data InstrumentationScope
- data KeyValue
- data KeyValueList
Documentation
Fields :
maybe'value
:: Lens' AnyValue (Prelude.Maybe AnyValue'Value)
maybe'stringValue
:: Lens' AnyValue (Prelude.Maybe Data.Text.Text)
stringValue
:: Lens' AnyValue Data.Text.Text
maybe'boolValue
:: Lens' AnyValue (Prelude.Maybe Prelude.Bool)
boolValue
:: Lens' AnyValue Prelude.Bool
maybe'intValue
:: Lens' AnyValue (Prelude.Maybe Data.Int.Int64)
intValue
:: Lens' AnyValue Data.Int.Int64
maybe'doubleValue
:: Lens' AnyValue (Prelude.Maybe Prelude.Double)
doubleValue
:: Lens' AnyValue Prelude.Double
maybe'arrayValue
:: Lens' AnyValue (Prelude.Maybe ArrayValue)
arrayValue
:: Lens' AnyValue ArrayValue
maybe'kvlistValue
:: Lens' AnyValue (Prelude.Maybe KeyValueList)
kvlistValue
:: Lens' AnyValue KeyValueList
maybe'bytesValue
:: Lens' AnyValue (Prelude.Maybe Data.ByteString.ByteString)
bytesValue
:: Lens' AnyValue Data.ByteString.ByteString
Instances
data AnyValue'Value Source #
Instances
data ArrayValue Source #
Fields :
values
:: Lens' ArrayValue [AnyValue]
vec'values
:: Lens' ArrayValue (Data.Vector.Vector AnyValue)
Instances
data InstrumentationScope Source #
Fields :
name
:: Lens' InstrumentationScope Data.Text.Text
version
:: Lens' InstrumentationScope Data.Text.Text
attributes
:: Lens' InstrumentationScope [KeyValue]
vec'attributes
:: Lens' InstrumentationScope (Data.Vector.Vector KeyValue)
droppedAttributesCount
:: Lens' InstrumentationScope Data.Word.Word32
Instances
Fields :
key
:: Lens' KeyValue Data.Text.Text
value
:: Lens' KeyValue AnyValue
maybe'value
:: Lens' KeyValue (Prelude.Maybe AnyValue)
Instances
data KeyValueList Source #
Fields :
values
:: Lens' KeyValueList [KeyValue]
vec'values
:: Lens' KeyValueList (Data.Vector.Vector KeyValue)