pub struct SessionCustomizationsReloadResult {
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Diagnostics from reloading skill definitions, with warnings and errors as separate lists.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§errors: Vec<String>Errors emitted while loading skills (e.g. skills that failed to load entirely)
warnings: Vec<String>Warnings emitted while loading skills (e.g. skills that loaded but had issues)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SessionCustomizationsReloadResult
impl<'de> Deserialize<'de> for SessionCustomizationsReloadResult
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 SessionCustomizationsReloadResult
impl RefUnwindSafe for SessionCustomizationsReloadResult
impl Send for SessionCustomizationsReloadResult
impl Sync for SessionCustomizationsReloadResult
impl Unpin for SessionCustomizationsReloadResult
impl UnsafeUnpin for SessionCustomizationsReloadResult
impl UnwindSafe for SessionCustomizationsReloadResult
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