pub struct AgentBlock {
pub acp_entrypoint: String,
pub snapshot: bool,
pub env: HashMap<String, String>,
pub launch_args: Vec<String>,
}Fields§
§acp_entrypoint: String§snapshot: bool§env: HashMap<String, String>§launch_args: Vec<String>Trait Implementations§
Source§impl Clone for AgentBlock
impl Clone for AgentBlock
Source§fn clone(&self) -> AgentBlock
fn clone(&self) -> AgentBlock
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 AgentBlock
impl Debug for AgentBlock
Source§impl<'de> Deserialize<'de> for AgentBlock
impl<'de> Deserialize<'de> for AgentBlock
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 AgentBlock
Source§impl PartialEq for AgentBlock
impl PartialEq for AgentBlock
Source§fn eq(&self, other: &AgentBlock) -> bool
fn eq(&self, other: &AgentBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentBlock
impl Serialize for AgentBlock
impl StructuralPartialEq for AgentBlock
Auto Trait Implementations§
impl Freeze for AgentBlock
impl RefUnwindSafe for AgentBlock
impl Send for AgentBlock
impl Sync for AgentBlock
impl Unpin for AgentBlock
impl UnsafeUnpin for AgentBlock
impl UnwindSafe for AgentBlock
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