1#[derive(Default, Debug)] 2pub struct ContainerStopLibpod { 3 /// number of seconds to wait before killing container 4 pub timeout: Option<i64>, 5 /// do not return error if container is already stopped 6 pub ignore: Option<bool>, 7}