Type Alias Cell

Source
pub type Cell<T> = NotebookCell<T>;

Aliased Type§

enum Cell<T> {
    RichText {
        id: Uuid,
        content: String,
    },
    Formal {
        id: Uuid,
        content: T,
    },
    Stem {
        id: Uuid,
    },
}

Variants§

§

RichText

Fields

§id: Uuid
§content: String
§

Formal

Fields

§id: Uuid
§content: T
§

Stem

Fields

§id: Uuid