pub struct SkillsGetInvokedResult {
pub skills: Vec<SkillsInvokedSkill>,
}Expand description
Skills invoked during this session, ordered by invocation time (most recent last).
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§skills: Vec<SkillsInvokedSkill>Skills invoked during this session, ordered by invocation time (most recent last)
Trait Implementations§
Source§impl Clone for SkillsGetInvokedResult
impl Clone for SkillsGetInvokedResult
Source§fn clone(&self) -> SkillsGetInvokedResult
fn clone(&self) -> SkillsGetInvokedResult
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 SkillsGetInvokedResult
impl Debug for SkillsGetInvokedResult
Source§impl Default for SkillsGetInvokedResult
impl Default for SkillsGetInvokedResult
Source§fn default() -> SkillsGetInvokedResult
fn default() -> SkillsGetInvokedResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SkillsGetInvokedResult
impl<'de> Deserialize<'de> for SkillsGetInvokedResult
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 SkillsGetInvokedResult
impl RefUnwindSafe for SkillsGetInvokedResult
impl Send for SkillsGetInvokedResult
impl Sync for SkillsGetInvokedResult
impl Unpin for SkillsGetInvokedResult
impl UnsafeUnpin for SkillsGetInvokedResult
impl UnwindSafe for SkillsGetInvokedResult
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