Trait SzProduct

Source
pub trait SzProduct {
    // Required methods
    fn get_license(&self) -> SzResult<JsonString>;
    fn get_version(&self) -> SzResult<JsonString>;
}
Expand description

Product version and license information

The SzProduct trait provides methods for retrieving product version and licensing information.

Required Methods§

Source

fn get_license(&self) -> SzResult<JsonString>

Gets the product license details

Source

fn get_version(&self) -> SzResult<JsonString>

Gets the product version information

Implementors§