#[non_exhaustive]pub enum RuntimeImage {
ColabImage(Box<ColabImage>),
}Available on crate feature
notebook-service only.Expand description
The image to be used by the notebook runtime.
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.
ColabImage(Box<ColabImage>)
Optional. Google-managed NotebookRuntime colab image.
Trait Implementations§
Source§impl Clone for RuntimeImage
impl Clone for RuntimeImage
Source§fn clone(&self) -> RuntimeImage
fn clone(&self) -> RuntimeImage
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 RuntimeImage
impl Debug for RuntimeImage
Source§impl PartialEq for RuntimeImage
impl PartialEq for RuntimeImage
impl StructuralPartialEq for RuntimeImage
Auto Trait Implementations§
impl Freeze for RuntimeImage
impl RefUnwindSafe for RuntimeImage
impl Send for RuntimeImage
impl Sync for RuntimeImage
impl Unpin for RuntimeImage
impl UnwindSafe for RuntimeImage
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