#[non_exhaustive]pub enum NotebookSource {
DataformRepositorySource(Box<DataformRepositorySource>),
GcsNotebookSource(Box<GcsNotebookSource>),
DirectNotebookSource(Box<DirectNotebookSource>),
}Available on crate features
notebook-service or schedule-service only.Expand description
The input notebook.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DataformRepositorySource(Box<DataformRepositorySource>)
The Dataform Repository pointing to a single file notebook repository.
GcsNotebookSource(Box<GcsNotebookSource>)
The Cloud Storage url pointing to the ipynb file. Format:
gs://bucket/notebook_file.ipynb
DirectNotebookSource(Box<DirectNotebookSource>)
The contents of an input notebook file.
Trait Implementations§
Source§impl Clone for NotebookSource
impl Clone for NotebookSource
Source§fn clone(&self) -> NotebookSource
fn clone(&self) -> NotebookSource
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 NotebookSource
impl Debug for NotebookSource
Source§impl PartialEq for NotebookSource
impl PartialEq for NotebookSource
impl StructuralPartialEq for NotebookSource
Auto Trait Implementations§
impl Freeze for NotebookSource
impl RefUnwindSafe for NotebookSource
impl Send for NotebookSource
impl Sync for NotebookSource
impl Unpin for NotebookSource
impl UnwindSafe for NotebookSource
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