pub struct SessionCustomAgentsUpdatedData {
pub agents: Vec<CustomAgentsUpdatedAgent>,
pub errors: Vec<String>,
pub warnings: Vec<String>,
}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 Clone for SessionCustomAgentsUpdatedData
impl Clone for SessionCustomAgentsUpdatedData
Source§fn clone(&self) -> SessionCustomAgentsUpdatedData
fn clone(&self) -> SessionCustomAgentsUpdatedData
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<'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