Type alias CursorState

CursorState: "idle" | "started" | "closed"
Overview

Represents the status of some AbstractCursor.

Status Description
idle The cursor is uninitialized/not in use, and may be modified freely.
started The cursor is currently in use, and cannot be modified w/out rewinding or cloning.
closed The cursor is closed, and cannot be used w/out rewinding or cloning.

See

AbstractCursor.state