pub struct RawNotebookMetadata {
pub authors: Option<Value>,
pub kernelspec: Option<Kernelspec>,
pub language_info: Option<LanguageInfo>,
pub orig_nbformat: Option<i64>,
pub title: Option<String>,
pub extra: BTreeMap<String, Value>,
}Expand description
Notebook root-level metadata.
Fields§
The author(s) of the notebook document
kernelspec: Option<Kernelspec>Kernel information.
language_info: Option<LanguageInfo>Language information.
orig_nbformat: Option<i64>Original notebook format (major number) before converting the notebook between versions. This should never be written to a file.
title: Option<String>The title of the notebook document
extra: BTreeMap<String, Value>For additional properties.
Trait Implementations§
Source§impl Clone for RawNotebookMetadata
impl Clone for RawNotebookMetadata
Source§fn clone(&self) -> RawNotebookMetadata
fn clone(&self) -> RawNotebookMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RawNotebookMetadata
impl Debug for RawNotebookMetadata
Source§impl Default for RawNotebookMetadata
impl Default for RawNotebookMetadata
Source§fn default() -> RawNotebookMetadata
fn default() -> RawNotebookMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RawNotebookMetadata
impl<'de> Deserialize<'de> for RawNotebookMetadata
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
Source§impl PartialEq for RawNotebookMetadata
impl PartialEq for RawNotebookMetadata
Source§impl Serialize for RawNotebookMetadata
impl Serialize for RawNotebookMetadata
impl StructuralPartialEq for RawNotebookMetadata
Auto Trait Implementations§
impl Freeze for RawNotebookMetadata
impl RefUnwindSafe for RawNotebookMetadata
impl Send for RawNotebookMetadata
impl Sync for RawNotebookMetadata
impl Unpin for RawNotebookMetadata
impl UnsafeUnpin for RawNotebookMetadata
impl UnwindSafe for RawNotebookMetadata
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