pub struct CellMeta {
pub collapsed: Option<bool>,
pub autoscroll: Option<Value>,
pub deletable: Option<bool>,
pub jupyter: Option<JupyterLabMeta>,
pub format: Option<String>,
pub name: Option<String>,
pub tags: Option<Vec<String>>,
pub additional: HashMap<String, Value>,
}
Expand description
Controls cell display and function in notebook applications and is also used for rendering outputs.
Fields§
§collapsed: Option<bool>
Cell is collapsed (can be shown).
autoscroll: Option<Value>
§deletable: Option<bool>
§jupyter: Option<JupyterLabMeta>
JupyterLab specific options
format: Option<String>
§name: Option<String>
Tags are useful for creating custom flags for cells.
additional: HashMap<String, Value>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CellMeta
impl<'de> Deserialize<'de> for CellMeta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CellMeta
impl RefUnwindSafe for CellMeta
impl Send for CellMeta
impl Sync for CellMeta
impl Unpin for CellMeta
impl UnwindSafe for CellMeta
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more