sparkleplug/sparkplug_b/payload/dataset

Types

pub type DataSet {
  DataSet(
    num_of_columns: Option(Int),
    columns: List(String),
    types: List(Int),
    rows: List(Row),
  )
}

Constructors

  • DataSet(
      num_of_columns: Option(Int),
      columns: List(String),
      types: List(Int),
      rows: List(Row),
    )
pub type DataSetValue {
  DataSetValue(value: Option(Value))
}

Constructors

  • DataSetValue(value: Option(Value))
pub type DataSetValueExtension =
  String
pub type Row {
  Row(elements: List(DataSetValue))
}

Constructors

  • Row(elements: List(DataSetValue))
pub type Value {
  IntValue(Int)
  LongValue(Int)
  FloatValue(Float)
  DoubleValue(Float)
  BooleanValue(Bool)
  StringValue(String)
  ExtensionValue(DataSetValueExtension)
}

Constructors

  • IntValue(Int)
  • LongValue(Int)
  • FloatValue(Float)
  • DoubleValue(Float)
  • BooleanValue(Bool)
  • StringValue(String)
  • ExtensionValue(DataSetValueExtension)
Search Document