#[non_exhaustive]pub struct StartNotebookRuntimeRequest {
pub name: String,
/* private fields */
}Expand description
Request message for NotebookService.StartNotebookRuntime.
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.name: StringRequired. The name of the NotebookRuntime resource to be started. Instead of checking whether the name is in valid NotebookRuntime resource name format, directly throw NotFound exception if there is no such NotebookRuntime in spanner.
Implementations§
Trait Implementations§
Source§impl Clone for StartNotebookRuntimeRequest
impl Clone for StartNotebookRuntimeRequest
Source§fn clone(&self) -> StartNotebookRuntimeRequest
fn clone(&self) -> StartNotebookRuntimeRequest
Returns a copy 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 StartNotebookRuntimeRequest
impl Debug for StartNotebookRuntimeRequest
Source§impl Default for StartNotebookRuntimeRequest
impl Default for StartNotebookRuntimeRequest
Source§fn default() -> StartNotebookRuntimeRequest
fn default() -> StartNotebookRuntimeRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StartNotebookRuntimeRequestwhere
StartNotebookRuntimeRequest: Default,
impl<'de> Deserialize<'de> for StartNotebookRuntimeRequestwhere
StartNotebookRuntimeRequest: Default,
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
impl StructuralPartialEq for StartNotebookRuntimeRequest
Auto Trait Implementations§
impl Freeze for StartNotebookRuntimeRequest
impl RefUnwindSafe for StartNotebookRuntimeRequest
impl Send for StartNotebookRuntimeRequest
impl Sync for StartNotebookRuntimeRequest
impl Unpin for StartNotebookRuntimeRequest
impl UnwindSafe for StartNotebookRuntimeRequest
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