pub trait Publishable {
    // Required method
    fn is_publishable(&self) -> bool;
}

Required Methods§

Implementations on Foreign Types§

source§

impl Publishable for Package

source§

fn is_publishable(&self) -> bool

Return true if the package can be published to at least one register (e.g. crates.io).

Implementors§