pub struct AgentProfile {
pub agent_id: AgentId,
pub role: String,
pub default_scopes: Vec<String>,
pub allowed_skill_names: Vec<String>,
pub goal_ids: Vec<GoalId>,
pub memory_policy: MemoryPolicy,
pub wake_policy: WakePolicy,
pub review_policy: ReviewPolicy,
pub escalation_policy: EscalationPolicy,
pub config_artifact: Option<ArtifactId>,
}Fields§
§agent_id: AgentId§role: String§default_scopes: Vec<String>§allowed_skill_names: Vec<String>§goal_ids: Vec<GoalId>§memory_policy: MemoryPolicy§wake_policy: WakePolicy§review_policy: ReviewPolicy§escalation_policy: EscalationPolicy§config_artifact: Option<ArtifactId>Trait Implementations§
Source§impl Clone for AgentProfile
impl Clone for AgentProfile
Source§fn clone(&self) -> AgentProfile
fn clone(&self) -> AgentProfile
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 AgentProfile
impl Debug for AgentProfile
Source§impl<'de> Deserialize<'de> for AgentProfile
impl<'de> Deserialize<'de> for AgentProfile
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentProfile, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentProfile, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AgentProfile
impl PartialEq for AgentProfile
Source§fn eq(&self, other: &AgentProfile) -> bool
fn eq(&self, other: &AgentProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentProfile
impl Serialize for AgentProfile
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for AgentProfile
impl StructuralPartialEq for AgentProfile
Auto Trait Implementations§
impl Freeze for AgentProfile
impl RefUnwindSafe for AgentProfile
impl Send for AgentProfile
impl Sync for AgentProfile
impl Unpin for AgentProfile
impl UnsafeUnpin for AgentProfile
impl UnwindSafe for AgentProfile
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