pub struct UserFile {
pub path: String,
pub content: Vec<u8>,
pub executable: bool,
}Expand description
File to write to workspace before execution.
Fields§
§path: String§content: Vec<u8>§executable: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UserFile
impl RefUnwindSafe for UserFile
impl Send for UserFile
impl Sync for UserFile
impl Unpin for UserFile
impl UnsafeUnpin for UserFile
impl UnwindSafe for UserFile
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