pub struct LocalStarter {
pub path: String,
pub group: String,
pub name: String,
pub config: Option<StarterConfig>,
}Fields§
§path: StringFull path identifier (group/name)
group: StringGroup or category this starter belongs to
name: StringName of this starter within its group
config: Option<StarterConfig>Configuration stored in the starter’s jump-start.yaml file
Implementations§
Trait Implementations§
Source§impl Clone for LocalStarter
impl Clone for LocalStarter
Source§fn clone(&self) -> LocalStarter
fn clone(&self) -> LocalStarter
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 LocalStarter
impl Debug for LocalStarter
Source§impl<'de> Deserialize<'de> for LocalStarter
impl<'de> Deserialize<'de> for LocalStarter
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 LocalStarter
impl RefUnwindSafe for LocalStarter
impl Send for LocalStarter
impl Sync for LocalStarter
impl Unpin for LocalStarter
impl UnsafeUnpin for LocalStarter
impl UnwindSafe for LocalStarter
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