pub struct ComputerUseConfig {
pub default_app_access: Option<AllowDenyRequirement>,
pub macos: Option<ComputerUseMacosConfig>,
pub windows: Option<ComputerUseWindowsConfig>,
}Expand description
Computer-use configuration (config side, snake_case wire).
Fields§
§default_app_access: Option<AllowDenyRequirement>§macos: Option<ComputerUseMacosConfig>§windows: Option<ComputerUseWindowsConfig>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 (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 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
Source§impl PartialEq for ComputerUseConfig
impl PartialEq for ComputerUseConfig
Source§impl Serialize for ComputerUseConfig
impl Serialize for ComputerUseConfig
impl StructuralPartialEq for ComputerUseConfig
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