pub struct AgentTransferRequest {
pub invocation_id: String,
pub from: String,
pub to: String,
pub depth: u32,
}Expand description
One proposed agent-to-agent transfer presented to a composite root.
Fields§
§invocation_id: StringRoot invocation that owns the transfer chain.
from: StringMember requesting the transfer.
to: StringProposed target member.
depth: u32One-based transfer depth if the transfer is accepted.
Trait Implementations§
Source§impl Clone for AgentTransferRequest
impl Clone for AgentTransferRequest
Source§fn clone(&self) -> AgentTransferRequest
fn clone(&self) -> AgentTransferRequest
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 AgentTransferRequest
impl Debug for AgentTransferRequest
Source§impl<'de> Deserialize<'de> for AgentTransferRequest
impl<'de> Deserialize<'de> for AgentTransferRequest
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
impl Eq for AgentTransferRequest
Source§impl PartialEq for AgentTransferRequest
impl PartialEq for AgentTransferRequest
Source§impl Serialize for AgentTransferRequest
impl Serialize for AgentTransferRequest
impl StructuralPartialEq for AgentTransferRequest
Auto Trait Implementations§
impl Freeze for AgentTransferRequest
impl RefUnwindSafe for AgentTransferRequest
impl Send for AgentTransferRequest
impl Sync for AgentTransferRequest
impl Unpin for AgentTransferRequest
impl UnsafeUnpin for AgentTransferRequest
impl UnwindSafe for AgentTransferRequest
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