pub struct ComputerUseActionResponse {
pub success: bool,
pub error: Option<String>,
}Expand description
Response for a previous action
Fields§
§success: boolWhether the action succeeded
error: Option<String>Error message if action failed
Trait Implementations§
Source§impl Clone for ComputerUseActionResponse
impl Clone for ComputerUseActionResponse
Source§fn clone(&self) -> ComputerUseActionResponse
fn clone(&self) -> ComputerUseActionResponse
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 ComputerUseActionResponse
impl Debug for ComputerUseActionResponse
Auto Trait Implementations§
impl Freeze for ComputerUseActionResponse
impl RefUnwindSafe for ComputerUseActionResponse
impl Send for ComputerUseActionResponse
impl Sync for ComputerUseActionResponse
impl Unpin for ComputerUseActionResponse
impl UnwindSafe for ComputerUseActionResponse
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