ostree 0.20.5

Rust bindings for libostree
1
2
3
4
5
6
7
8
9
10
use glib::GString;

use crate::Deployment;

impl Deployment {
    /// Access the name of the deployment stateroot.
    pub fn stateroot(&self) -> GString {
        self.osname()
    }
}