pub struct NotebookUpdatePatch {
pub name: Option<String>,
pub cells: Option<Value>,
}Expand description
Fields that can be updated in a PUT /{notebook_id} call.
None means “leave the existing value unchanged” (mirrors Python’s
truthiness-gated assignment).
Fields§
§name: Option<String>§cells: Option<Value>Trait Implementations§
Source§impl Clone for NotebookUpdatePatch
impl Clone for NotebookUpdatePatch
Source§fn clone(&self) -> NotebookUpdatePatch
fn clone(&self) -> NotebookUpdatePatch
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 NotebookUpdatePatch
impl Debug for NotebookUpdatePatch
Source§impl Default for NotebookUpdatePatch
impl Default for NotebookUpdatePatch
Source§fn default() -> NotebookUpdatePatch
fn default() -> NotebookUpdatePatch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NotebookUpdatePatch
impl RefUnwindSafe for NotebookUpdatePatch
impl Send for NotebookUpdatePatch
impl Sync for NotebookUpdatePatch
impl Unpin for NotebookUpdatePatch
impl UnsafeUnpin for NotebookUpdatePatch
impl UnwindSafe for NotebookUpdatePatch
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