pub struct AgentEntry {
pub name: String,
pub description: String,
pub model: String,
pub reasoning_effort: Option<ReasoningEffort>,
pub user_invocable: bool,
pub agent_invocable: bool,
pub prompts: Vec<String>,
pub mcp_servers: Vec<String>,
pub tools: ToolFilter,
}Expand description
Agent entry DTO for .aether/settings.json.
Fields§
§name: String§description: String§model: String§reasoning_effort: Option<ReasoningEffort>§user_invocable: bool§agent_invocable: bool§prompts: Vec<String>§mcp_servers: Vec<String>§tools: ToolFilterTrait Implementations§
Source§impl Clone for AgentEntry
impl Clone for AgentEntry
Source§fn clone(&self) -> AgentEntry
fn clone(&self) -> AgentEntry
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 AgentEntry
impl Debug for AgentEntry
Source§impl Default for AgentEntry
impl Default for AgentEntry
Source§fn default() -> AgentEntry
fn default() -> AgentEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentEntrywhere
AgentEntry: Default,
impl<'de> Deserialize<'de> for AgentEntrywhere
AgentEntry: Default,
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
Auto Trait Implementations§
impl Freeze for AgentEntry
impl RefUnwindSafe for AgentEntry
impl Send for AgentEntry
impl Sync for AgentEntry
impl Unpin for AgentEntry
impl UnsafeUnpin for AgentEntry
impl UnwindSafe for AgentEntry
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