podman_rest_client/v4/params/
image_changes_libpod.rs

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