#[non_exhaustive]pub enum ResponseCodeInterpreterContainer {
Id(String),
Auto(ResponseCodeInterpreterAutoContainer),
}Expand description
EN: Code interpreter container selector. 中文:code interpreter 容器选择器。
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.
Id(String)
EN: Existing container id. 中文:已有容器 ID。
Auto(ResponseCodeInterpreterAutoContainer)
EN: Automatically managed container configuration. 中文:自动托管容器配置。
Trait Implementations§
Source§impl Clone for ResponseCodeInterpreterContainer
impl Clone for ResponseCodeInterpreterContainer
Source§fn clone(&self) -> ResponseCodeInterpreterContainer
fn clone(&self) -> ResponseCodeInterpreterContainer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for ResponseCodeInterpreterContainer
impl PartialEq for ResponseCodeInterpreterContainer
Source§fn eq(&self, other: &ResponseCodeInterpreterContainer) -> bool
fn eq(&self, other: &ResponseCodeInterpreterContainer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResponseCodeInterpreterContainer
Auto Trait Implementations§
impl Freeze for ResponseCodeInterpreterContainer
impl RefUnwindSafe for ResponseCodeInterpreterContainer
impl Send for ResponseCodeInterpreterContainer
impl Sync for ResponseCodeInterpreterContainer
impl Unpin for ResponseCodeInterpreterContainer
impl UnsafeUnpin for ResponseCodeInterpreterContainer
impl UnwindSafe for ResponseCodeInterpreterContainer
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