pub struct EditedNotebookCell {
pub filename: String,
pub cell_index: u64,
pub cell_type: String,
pub snippet: String,
pub description: Option<String>,
}Expand description
Edited notebook cell
Fields§
§filename: StringNotebook file path
cell_index: u64Cell index (0-based)
cell_type: StringCell type: “code”, “markdown”, “raw”
snippet: StringCell content snippet
description: Option<String>Description of changes
Trait Implementations§
Source§impl Clone for EditedNotebookCell
impl Clone for EditedNotebookCell
Source§impl Debug for EditedNotebookCell
impl Debug for EditedNotebookCell
Source§impl<'de> Deserialize<'de> for EditedNotebookCell
impl<'de> Deserialize<'de> for EditedNotebookCell
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 EditedNotebookCell
impl RefUnwindSafe for EditedNotebookCell
impl Send for EditedNotebookCell
impl Sync for EditedNotebookCell
impl Unpin for EditedNotebookCell
impl UnsafeUnpin for EditedNotebookCell
impl UnwindSafe for EditedNotebookCell
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