particle-os-cli/process/drivers/opts/inspect.rs
2024-09-21 18:42:28 -04:00

12 lines
229 B
Rust

use std::borrow::Cow;
use bon::Builder;
#[derive(Debug, Clone, Builder)]
pub struct GetMetadataOpts<'scope> {
#[builder(into)]
pub image: Cow<'scope, str>,
#[builder(into)]
pub tag: Option<Cow<'scope, str>>,
}