pub struct NotebookSource {
pub metadata: Option<NotebookSourceMetadata>,
pub name: String,
pub settings: Option<NotebookSourceSettings>,
pub source_id: Option<NotebookSourceId>,
pub title: Option<String>,
pub extra: HashMap<String, Value>,
}Fields§
§metadata: Option<NotebookSourceMetadata>§name: String§settings: Option<NotebookSourceSettings>§source_id: Option<NotebookSourceId>§title: Option<String>§extra: HashMap<String, Value>Trait Implementations§
Source§impl Clone for NotebookSource
impl Clone for NotebookSource
Source§fn clone(&self) -> NotebookSource
fn clone(&self) -> NotebookSource
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 NotebookSource
impl Debug for NotebookSource
Source§impl Default for NotebookSource
impl Default for NotebookSource
Source§fn default() -> NotebookSource
fn default() -> NotebookSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotebookSource
impl<'de> Deserialize<'de> for NotebookSource
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 NotebookSource
impl RefUnwindSafe for NotebookSource
impl Send for NotebookSource
impl Sync for NotebookSource
impl Unpin for NotebookSource
impl UnwindSafe for NotebookSource
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