NotebookCell

langoustine.lsp.structures.NotebookCell
See theNotebookCell companion object
case class NotebookCell(kind: NotebookCellKind, document: DocumentUri, metadata: Opt[LSPObject], executionSummary: Opt[ExecutionSummary])

A notebook cell.

A cell's document URI must be unique across ALL notebook cells and can therefore be used to uniquely identify a notebook cell or the cell's text document.

Value parameters

document

The URI of the cell's text document content.

executionSummary

Additional execution summary information if supported by the client.

kind

The cell's kind

metadata

Additional metadata stored with the cell. Note: should always be an object literal (e.g. LSPObject)

Attributes

Since

3.17.0

Companion
object
Source
structures.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product