pub struct SkillRef<'a> {
pub name: &'a str,
pub dir: &'a str,
pub instructions: &'a str,
}Expand description
A borrowed view of the skill under test, as sent to the provider.
Fields§
§name: &'a str§dir: &'a str§instructions: &'a strAuto Trait Implementations§
impl<'a> Freeze for SkillRef<'a>
impl<'a> RefUnwindSafe for SkillRef<'a>
impl<'a> Send for SkillRef<'a>
impl<'a> Sync for SkillRef<'a>
impl<'a> Unpin for SkillRef<'a>
impl<'a> UnsafeUnpin for SkillRef<'a>
impl<'a> UnwindSafe for SkillRef<'a>
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