pub enum ExecutionScope {
Foreground,
Background,
}Expand description
Whether a tool invocation belongs to a user-visible foreground turn or a background maintenance execution.
Variants§
Trait Implementations§
Source§impl Clone for ExecutionScope
impl Clone for ExecutionScope
Source§fn clone(&self) -> ExecutionScope
fn clone(&self) -> ExecutionScope
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 ExecutionScope
impl Debug for ExecutionScope
Source§impl Default for ExecutionScope
impl Default for ExecutionScope
Source§fn default() -> ExecutionScope
fn default() -> ExecutionScope
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionScope
impl<'de> Deserialize<'de> for ExecutionScope
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 ExecutionScope
impl PartialEq for ExecutionScope
Source§impl Serialize for ExecutionScope
impl Serialize for ExecutionScope
impl Copy for ExecutionScope
impl Eq for ExecutionScope
impl StructuralPartialEq for ExecutionScope
Auto Trait Implementations§
impl Freeze for ExecutionScope
impl RefUnwindSafe for ExecutionScope
impl Send for ExecutionScope
impl Sync for ExecutionScope
impl Unpin for ExecutionScope
impl UnsafeUnpin for ExecutionScope
impl UnwindSafe for ExecutionScope
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