pub struct AgentConfigFile {
pub cmd: Option<String>,
pub config_dir: Option<PathBuf>,
}Expand description
Serializable model for one [agent.<id>] entry in root config.toml.
Fields§
§cmd: Option<String>Command used to launch the agent.
config_dir: Option<PathBuf>Relative destination directory copied during apg init --agent <id>.
Trait Implementations§
Source§impl Clone for AgentConfigFile
impl Clone for AgentConfigFile
Source§fn clone(&self) -> AgentConfigFile
fn clone(&self) -> AgentConfigFile
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 AgentConfigFile
impl Debug for AgentConfigFile
Source§impl Default for AgentConfigFile
impl Default for AgentConfigFile
Source§fn default() -> AgentConfigFile
fn default() -> AgentConfigFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentConfigFile
impl<'de> Deserialize<'de> for AgentConfigFile
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 JsonSchema for AgentConfigFile
impl JsonSchema for AgentConfigFile
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for AgentConfigFile
impl PartialEq for AgentConfigFile
Source§impl Serialize for AgentConfigFile
impl Serialize for AgentConfigFile
impl Eq for AgentConfigFile
impl StructuralPartialEq for AgentConfigFile
Auto Trait Implementations§
impl Freeze for AgentConfigFile
impl RefUnwindSafe for AgentConfigFile
impl Send for AgentConfigFile
impl Sync for AgentConfigFile
impl Unpin for AgentConfigFile
impl UnsafeUnpin for AgentConfigFile
impl UnwindSafe for AgentConfigFile
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