Trait rss::validation::Validate

source ·
pub trait Validate {
    // Required method
    fn validate(&self) -> Result<(), ValidationError>;
}
Expand description

A trait to support data validation.

Required Methods§

source

fn validate(&self) -> Result<(), ValidationError>

Validate the data against the RSS specification.

Implementors§