#[non_exhaustive]pub enum ResponseComputerEnvironment {
Windows,
Mac,
Linux,
Ubuntu,
Browser,
}Expand description
EN: Environment controlled by a Responses API computer tool. 中文:Responses API computer 工具控制的环境。
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.
Windows
EN: Windows desktop environment. 中文:Windows 桌面环境。
Mac
EN: macOS desktop environment. 中文:macOS 桌面环境。
Linux
EN: Linux desktop environment. 中文:Linux 桌面环境。
Ubuntu
EN: Ubuntu desktop environment. 中文:Ubuntu 桌面环境。
Browser
EN: Browser environment. 中文:浏览器环境。
Trait Implementations§
Source§impl Clone for ResponseComputerEnvironment
impl Clone for ResponseComputerEnvironment
Source§fn clone(&self) -> ResponseComputerEnvironment
fn clone(&self) -> ResponseComputerEnvironment
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 moreimpl Copy for ResponseComputerEnvironment
Source§impl Debug for ResponseComputerEnvironment
impl Debug for ResponseComputerEnvironment
Source§impl<'de> Deserialize<'de> for ResponseComputerEnvironment
impl<'de> Deserialize<'de> for ResponseComputerEnvironment
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 Eq for ResponseComputerEnvironment
Source§impl PartialEq for ResponseComputerEnvironment
impl PartialEq for ResponseComputerEnvironment
Source§fn eq(&self, other: &ResponseComputerEnvironment) -> bool
fn eq(&self, other: &ResponseComputerEnvironment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResponseComputerEnvironment
Auto Trait Implementations§
impl Freeze for ResponseComputerEnvironment
impl RefUnwindSafe for ResponseComputerEnvironment
impl Send for ResponseComputerEnvironment
impl Sync for ResponseComputerEnvironment
impl Unpin for ResponseComputerEnvironment
impl UnsafeUnpin for ResponseComputerEnvironment
impl UnwindSafe for ResponseComputerEnvironment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.