pub struct NotebookLmNotebook {
pub id: Option<String>,
pub title: Option<String>,
pub url: Option<String>,
}Expand description
NotebookLM Notebook link.
This type is not used in any activity, and only used as part of another schema.
Fields§
§id: Option<String>Notebook resource id.
title: Option<String>Title of the Notebook.
url: Option<String>URL that can be used to access the Notebook.
Trait Implementations§
Source§impl Clone for NotebookLmNotebook
impl Clone for NotebookLmNotebook
Source§fn clone(&self) -> NotebookLmNotebook
fn clone(&self) -> NotebookLmNotebook
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 NotebookLmNotebook
impl Debug for NotebookLmNotebook
Source§impl Default for NotebookLmNotebook
impl Default for NotebookLmNotebook
Source§fn default() -> NotebookLmNotebook
fn default() -> NotebookLmNotebook
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotebookLmNotebook
impl<'de> Deserialize<'de> for NotebookLmNotebook
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 Serialize for NotebookLmNotebook
impl Serialize for NotebookLmNotebook
impl Part for NotebookLmNotebook
Auto Trait Implementations§
impl Freeze for NotebookLmNotebook
impl RefUnwindSafe for NotebookLmNotebook
impl Send for NotebookLmNotebook
impl Sync for NotebookLmNotebook
impl Unpin for NotebookLmNotebook
impl UnwindSafe for NotebookLmNotebook
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