Trait CheckVersionValidityForPublishing

Source
pub trait CheckVersionValidityForPublishing {
    type Error;

    // Required method
    fn check_version_validity_for_publishing(&self) -> Result<(), Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn check_version_validity_for_publishing(&self) -> Result<(), Self::Error>

Ensures that the version field is valid

Implementors§