pub struct AudioOverviewRequest {}Expand description
Audio Overview creation request.
§Known Issues (as of 2025-10-19)
Despite the API documentation mentioning fields like sourceIds, episodeFocus,
and languageCode, the actual API only accepts an empty request body {}.
Any fields sent result in “Unknown name” errors.
These configuration options are likely set through the NotebookLM UI after creation.
The fields below are commented out but kept for future compatibility if the API implements them.
Trait Implementations§
Source§impl Clone for AudioOverviewRequest
impl Clone for AudioOverviewRequest
Source§fn clone(&self) -> AudioOverviewRequest
fn clone(&self) -> AudioOverviewRequest
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 AudioOverviewRequest
impl Debug for AudioOverviewRequest
Source§impl Default for AudioOverviewRequest
impl Default for AudioOverviewRequest
Source§fn default() -> AudioOverviewRequest
fn default() -> AudioOverviewRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AudioOverviewRequest
impl<'de> Deserialize<'de> for AudioOverviewRequest
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 AudioOverviewRequest
impl RefUnwindSafe for AudioOverviewRequest
impl Send for AudioOverviewRequest
impl Sync for AudioOverviewRequest
impl Unpin for AudioOverviewRequest
impl UnwindSafe for AudioOverviewRequest
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