Skip to main content

Mountain/IPC/WindServiceAdapters/
FilesToWait.rs

1
2//! `--wait` payload: marker file URI plus the path list whose
3//! close events the launcher is blocked on.
4
5use serde::{Deserialize, Serialize};
6
7use crate::IPC::WindServiceAdapters::FileToOpenOrCreate;
8
9#[derive(Debug, Clone, Serialize, Deserialize)]
10pub struct Struct {
11	pub wait_marker_file_uri:String,
12
13	pub paths:Vec<FileToOpenOrCreate::Struct>,
14}