pub struct SharedArtifact {
pub path: String,
pub bytes: &'static [u8],
}Expand description
One shared artifact: its path under the shared root, and its bytes.
Fields§
§path: StringThe path relative to the shared root, as it lands.
bytes: &'static [u8]The authored bytes, byte-identical to the file under skill-shared/.
Trait Implementations§
Auto Trait Implementations§
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