Trait CheckRequiredFieldsForIntegrity

Source
pub trait CheckRequiredFieldsForIntegrity {
    type Error;

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

Required Associated Types§

Required Methods§

Source

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

Checks if Cargo.toml has required fields for integrity purposes

Implementors§