pub struct SessionCustomAgentsUpdatedData {
pub agents: Vec<CustomAgentsUpdatedAgent>,
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Session event “session.custom_agents_updated”. Payload of session.custom_agents_updated with loaded custom agents plus non-fatal warnings and fatal errors.
Fields§
§agents: Vec<CustomAgentsUpdatedAgent>Array of loaded custom agent metadata
errors: Vec<String>Fatal errors from agent loading
warnings: Vec<String>Non-fatal warnings from agent loading
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SessionCustomAgentsUpdatedData
impl<'de> Deserialize<'de> for SessionCustomAgentsUpdatedData
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 SessionCustomAgentsUpdatedData
impl RefUnwindSafe for SessionCustomAgentsUpdatedData
impl Send for SessionCustomAgentsUpdatedData
impl Sync for SessionCustomAgentsUpdatedData
impl Unpin for SessionCustomAgentsUpdatedData
impl UnsafeUnpin for SessionCustomAgentsUpdatedData
impl UnwindSafe for SessionCustomAgentsUpdatedData
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