pub struct BatchDeleteNotebooksRequest {
pub names: Vec<String>,
}Expand description
Batch delete notebooks request.
§Known Issues (as of 2025-10-19)
Despite the API being named “batchDelete” and accepting an array of names, the API returns HTTP 400 error when multiple notebook names are provided. Only single notebook deletion works (array with 1 element).
To delete multiple notebooks, call this API multiple times with one notebook at a time.
Fields§
§names: Vec<String>Trait Implementations§
Source§impl Clone for BatchDeleteNotebooksRequest
impl Clone for BatchDeleteNotebooksRequest
Source§fn clone(&self) -> BatchDeleteNotebooksRequest
fn clone(&self) -> BatchDeleteNotebooksRequest
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 BatchDeleteNotebooksRequest
impl Debug for BatchDeleteNotebooksRequest
Source§impl Default for BatchDeleteNotebooksRequest
impl Default for BatchDeleteNotebooksRequest
Source§fn default() -> BatchDeleteNotebooksRequest
fn default() -> BatchDeleteNotebooksRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchDeleteNotebooksRequest
impl<'de> Deserialize<'de> for BatchDeleteNotebooksRequest
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 BatchDeleteNotebooksRequest
impl RefUnwindSafe for BatchDeleteNotebooksRequest
impl Send for BatchDeleteNotebooksRequest
impl Sync for BatchDeleteNotebooksRequest
impl Unpin for BatchDeleteNotebooksRequest
impl UnwindSafe for BatchDeleteNotebooksRequest
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