pub struct AgentDependency {
pub type_name: String,
pub description: Option<String>,
pub constructor: AgentConstructor,
pub methods: Vec<AgentMethod>,
}Fields§
§type_name: String§description: Option<String>§constructor: AgentConstructor§methods: Vec<AgentMethod>Trait Implementations§
Source§impl Clone for AgentDependency
impl Clone for AgentDependency
Source§fn clone(&self) -> AgentDependency
fn clone(&self) -> AgentDependency
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 moreAuto Trait Implementations§
impl Freeze for AgentDependency
impl RefUnwindSafe for AgentDependency
impl Send for AgentDependency
impl Sync for AgentDependency
impl Unpin for AgentDependency
impl UnwindSafe for AgentDependency
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