#[non_exhaustive]pub struct NotebookAction {
pub contents: String,
pub job_id: String,
/* private fields */
}Expand description
Represents a workflow action that will run against a Notebook runtime.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.contents: StringOutput only. The code contents of a Notebook to be run.
job_id: StringOutput only. The ID of the Vertex job that executed the notebook in contents and also the ID used for the outputs created in Google Cloud Storage buckets. Only set once the job has started to run.
Implementations§
Trait Implementations§
Source§impl Clone for NotebookAction
impl Clone for NotebookAction
Source§fn clone(&self) -> NotebookAction
fn clone(&self) -> NotebookAction
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 NotebookAction
impl Debug for NotebookAction
Source§impl Default for NotebookAction
impl Default for NotebookAction
Source§fn default() -> NotebookAction
fn default() -> NotebookAction
Returns the “default value” for a type. Read more
Source§impl Message for NotebookAction
impl Message for NotebookAction
Source§impl PartialEq for NotebookAction
impl PartialEq for NotebookAction
impl StructuralPartialEq for NotebookAction
Auto Trait Implementations§
impl Freeze for NotebookAction
impl RefUnwindSafe for NotebookAction
impl Send for NotebookAction
impl Sync for NotebookAction
impl Unpin for NotebookAction
impl UnwindSafe for NotebookAction
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