pub struct NotebookCell {
pub id: String,
pub cell_type: CellType,
pub source: String,
pub outputs: Vec<CellOutput>,
pub execution_count: Option<usize>,
pub metadata: CellMetadata,
}Fields§
§id: String§cell_type: CellType§source: String§outputs: Vec<CellOutput>§execution_count: Option<usize>§metadata: CellMetadataTrait Implementations§
Source§impl Clone for NotebookCell
impl Clone for NotebookCell
Source§fn clone(&self) -> NotebookCell
fn clone(&self) -> NotebookCell
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NotebookCell
impl Debug for NotebookCell
Source§impl<'de> Deserialize<'de> for NotebookCell
impl<'de> Deserialize<'de> for NotebookCell
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 NotebookCell
impl RefUnwindSafe for NotebookCell
impl Send for NotebookCell
impl Sync for NotebookCell
impl Unpin for NotebookCell
impl UnwindSafe for NotebookCell
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