podman_rest_client/v5/params/
container_changes_libpod.rs

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
4    pub parent: Option<&'a str>,
5    /// select what you want to match, default is all
6    pub diff_type: Option<&'a str>,
7}