pub struct LaunchJsonWritePlan {
pub content: String,
pub replaced: bool,
}Expand description
Result of merging a draft into launch.json: the serialized document plus
whether a same-named configuration was overwritten.
Fields§
§content: StringPretty-printed launch.json content, trailing newline included.
replaced: booltrue if an existing same-named configuration was replaced; false if appended.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LaunchJsonWritePlan
impl RefUnwindSafe for LaunchJsonWritePlan
impl Send for LaunchJsonWritePlan
impl Sync for LaunchJsonWritePlan
impl Unpin for LaunchJsonWritePlan
impl UnsafeUnpin for LaunchJsonWritePlan
impl UnwindSafe for LaunchJsonWritePlan
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