pub struct NotebookReadInput {
pub notebook_path: String,
}Expand description
Input for the NotebookRead tool - reads notebook cells.
Fields§
§notebook_path: StringThe absolute path to the notebook file
Trait Implementations§
Source§impl Clone for NotebookReadInput
impl Clone for NotebookReadInput
Source§fn clone(&self) -> NotebookReadInput
fn clone(&self) -> NotebookReadInput
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 NotebookReadInput
impl Debug for NotebookReadInput
Source§impl<'de> Deserialize<'de> for NotebookReadInput
impl<'de> Deserialize<'de> for NotebookReadInput
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 PartialEq for NotebookReadInput
impl PartialEq for NotebookReadInput
Source§impl Serialize for NotebookReadInput
impl Serialize for NotebookReadInput
impl StructuralPartialEq for NotebookReadInput
Auto Trait Implementations§
impl Freeze for NotebookReadInput
impl RefUnwindSafe for NotebookReadInput
impl Send for NotebookReadInput
impl Sync for NotebookReadInput
impl Unpin for NotebookReadInput
impl UnsafeUnpin for NotebookReadInput
impl UnwindSafe for NotebookReadInput
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