1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::prelude::*;

use super::XcRunSimctlInstance;

pub use output::*;
mod output;

impl<'src> XcRunSimctlInstance<'src> {
	#[instrument(skip_all)]
	pub fn list(&self) -> Result<ListOutput> {
		ListOutput::from_bossy_result(self
			.bossy_command()
			.with_arg("list")
			.with_arg("--json")
			.run_and_wait_for_output())
	}
}