blue-build 0.8.9

A CLI tool built for creating Containerfile templates for ostree based atomic distros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::borrow::Cow;

use typed_builder::TypedBuilder;

#[derive(Debug, Clone, TypedBuilder)]
pub struct GetMetadataOpts<'a> {
    #[builder(setter(into))]
    pub image: Cow<'a, str>,

    #[builder(default, setter(into, strip_option))]
    pub tag: Option<Cow<'a, str>>,
}