Skip to main content

Catalog

Type Alias Catalog 

Source
pub type Catalog = Catalog;

Aliased Type§

pub struct Catalog {
    pub name: String,
    pub display_name: String,
    pub description: String,
    pub icon_svg: String,
    pub operations: Vec<CatalogOperation>,
}

Fields§

§name: String§display_name: String§description: String§icon_svg: String§operations: Vec<CatalogOperation>

Implementations§

Source§

impl Catalog

Source

pub fn with_name(self, name: impl Into<String>) -> Self