pub struct RejectedAgent {
pub agent_uri: String,
pub reason: String,
}Expand description
A candidate agent that was considered but not selected, with a reason.
Fields§
§agent_uri: StringURI of the rejected agent.
reason: StringHuman-readable reason for rejection.
Trait Implementations§
Source§impl Clone for RejectedAgent
impl Clone for RejectedAgent
Source§fn clone(&self) -> RejectedAgent
fn clone(&self) -> RejectedAgent
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 RejectedAgent
impl Debug for RejectedAgent
Source§impl<'de> Deserialize<'de> for RejectedAgent
impl<'de> Deserialize<'de> for RejectedAgent
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 RejectedAgent
impl RefUnwindSafe for RejectedAgent
impl Send for RejectedAgent
impl Sync for RejectedAgent
impl Unpin for RejectedAgent
impl UnsafeUnpin for RejectedAgent
impl UnwindSafe for RejectedAgent
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