pub struct WorkspaceSetup {
pub name: &'static str,
pub files: &'static [SeedFile],
}Expand description
A workspace to pre-create with optional file modifications.
Fields§
§name: &'static strWorkspace name.
files: &'static [SeedFile]Files to create or modify in this workspace.
Trait Implementations§
Source§impl Clone for WorkspaceSetup
impl Clone for WorkspaceSetup
Source§fn clone(&self) -> WorkspaceSetup
fn clone(&self) -> WorkspaceSetup
Returns a duplicate of the value. Read more
1.0.0 · 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 WorkspaceSetup
impl Debug for WorkspaceSetup
Auto Trait Implementations§
impl Freeze for WorkspaceSetup
impl RefUnwindSafe for WorkspaceSetup
impl Send for WorkspaceSetup
impl Sync for WorkspaceSetup
impl Unpin for WorkspaceSetup
impl UnsafeUnpin for WorkspaceSetup
impl UnwindSafe for WorkspaceSetup
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