pub struct StackDef {
pub parent: Option<String>,
pub file_markers: Vec<String>,
pub content_match: HashMap<String, String>,
pub tools: HashMap<String, String>,
}Fields§
§parent: Option<String>§file_markers: Vec<String>§content_match: HashMap<String, String>§tools: HashMap<String, String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for StackDef
impl<'de> Deserialize<'de> for StackDef
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 StackDef
impl RefUnwindSafe for StackDef
impl Send for StackDef
impl Sync for StackDef
impl Unpin for StackDef
impl UnsafeUnpin for StackDef
impl UnwindSafe for StackDef
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