pub struct AgentDeclaration {
pub bounded_actions: Vec<String>,
pub forbidden: Vec<String>,
pub escalation_required: Vec<String>,
}Expand description
Agent declaration: scope constraints.
Fields§
§bounded_actions: Vec<String>§forbidden: Vec<String>§escalation_required: Vec<String>Trait Implementations§
Source§impl Clone for AgentDeclaration
impl Clone for AgentDeclaration
Source§fn clone(&self) -> AgentDeclaration
fn clone(&self) -> AgentDeclaration
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 AgentDeclaration
impl Debug for AgentDeclaration
Source§impl<'de> Deserialize<'de> for AgentDeclaration
impl<'de> Deserialize<'de> for AgentDeclaration
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 AgentDeclaration
impl RefUnwindSafe for AgentDeclaration
impl Send for AgentDeclaration
impl Sync for AgentDeclaration
impl Unpin for AgentDeclaration
impl UnsafeUnpin for AgentDeclaration
impl UnwindSafe for AgentDeclaration
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