pub trait Content: CommonOps {
    fn serialize_to(&self, fmt: &mut dyn Write) -> Result;

    fn validate_data(&self) -> ValidationResult<()> { ... }
}
Expand description

Proof Content

Content is a standardized format of a crev proof body (part that is being signed over).

It is open-ended, and different software can implement their own formats.

Required Methods

Provided Methods

Implementors