1#[derive(Default, Debug)]
2pub struct ContainerChangesLibpod<'a> {
3/// specify a second layer which is used to compare against it instead of the parent layer
4pub parent: Option<&'a str>,
5/// select what you want to match, default is all
6pub diff_type: Option<&'a str>,
7}