pub struct ComputerUseConfig {
pub supported: bool,
pub status: Option<String>,
pub implementation: Option<String>,
pub actions: Option<Value>,
pub safety: Option<Value>,
pub environment: Option<Value>,
pub provider_mapping: Option<HashMap<String, Value>>,
}Expand description
Computer Use configuration (Ring 2).
Fields§
§supported: bool§status: Option<String>§implementation: Option<String>§actions: Option<Value>§safety: Option<Value>§environment: Option<Value>§provider_mapping: Option<HashMap<String, Value>>Trait Implementations§
Source§impl Clone for ComputerUseConfig
impl Clone for ComputerUseConfig
Source§fn clone(&self) -> ComputerUseConfig
fn clone(&self) -> ComputerUseConfig
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 ComputerUseConfig
impl Debug for ComputerUseConfig
Source§impl Default for ComputerUseConfig
impl Default for ComputerUseConfig
Source§fn default() -> ComputerUseConfig
fn default() -> ComputerUseConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComputerUseConfig
impl<'de> Deserialize<'de> for ComputerUseConfig
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
Auto Trait Implementations§
impl Freeze for ComputerUseConfig
impl RefUnwindSafe for ComputerUseConfig
impl Send for ComputerUseConfig
impl Sync for ComputerUseConfig
impl Unpin for ComputerUseConfig
impl UnsafeUnpin for ComputerUseConfig
impl UnwindSafe for ComputerUseConfig
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