#[non_exhaustive]pub struct CreateNotebookExecutionJobOperationMetadata {
pub generic_metadata: Option<GenericOperationMetadata>,
pub progress_message: String,
/* private fields */
}
Expand description
Metadata information for NotebookService.CreateNotebookExecutionJob.
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.generic_metadata: Option<GenericOperationMetadata>
The operation generic information.
progress_message: String
A human-readable message that shows the intermediate progress details of NotebookRuntime.
Implementations§
Source§impl CreateNotebookExecutionJobOperationMetadata
impl CreateNotebookExecutionJobOperationMetadata
pub fn new() -> Self
Sourcepub fn set_generic_metadata<T>(self, v: T) -> Selfwhere
T: Into<GenericOperationMetadata>,
pub fn set_generic_metadata<T>(self, v: T) -> Selfwhere
T: Into<GenericOperationMetadata>,
Sets the value of generic_metadata.
Sourcepub fn set_or_clear_generic_metadata<T>(self, v: Option<T>) -> Selfwhere
T: Into<GenericOperationMetadata>,
pub fn set_or_clear_generic_metadata<T>(self, v: Option<T>) -> Selfwhere
T: Into<GenericOperationMetadata>,
Sets or clears the value of generic_metadata.
Sourcepub fn set_progress_message<T: Into<String>>(self, v: T) -> Self
pub fn set_progress_message<T: Into<String>>(self, v: T) -> Self
Sets the value of progress_message.
Trait Implementations§
Source§impl Clone for CreateNotebookExecutionJobOperationMetadata
impl Clone for CreateNotebookExecutionJobOperationMetadata
Source§fn clone(&self) -> CreateNotebookExecutionJobOperationMetadata
fn clone(&self) -> CreateNotebookExecutionJobOperationMetadata
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 Default for CreateNotebookExecutionJobOperationMetadata
impl Default for CreateNotebookExecutionJobOperationMetadata
Source§fn default() -> CreateNotebookExecutionJobOperationMetadata
fn default() -> CreateNotebookExecutionJobOperationMetadata
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateNotebookExecutionJobOperationMetadata
impl PartialEq for CreateNotebookExecutionJobOperationMetadata
Source§fn eq(&self, other: &CreateNotebookExecutionJobOperationMetadata) -> bool
fn eq(&self, other: &CreateNotebookExecutionJobOperationMetadata) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateNotebookExecutionJobOperationMetadata
Auto Trait Implementations§
impl Freeze for CreateNotebookExecutionJobOperationMetadata
impl RefUnwindSafe for CreateNotebookExecutionJobOperationMetadata
impl Send for CreateNotebookExecutionJobOperationMetadata
impl Sync for CreateNotebookExecutionJobOperationMetadata
impl Unpin for CreateNotebookExecutionJobOperationMetadata
impl UnwindSafe for CreateNotebookExecutionJobOperationMetadata
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