1 2 3 4 5 6 7
use crate::specification::entities::markers::PlaintextKind; use crate::specification::entities::AbstractEntity; /// A trait implemented by types embodying a plaintext. /// /// # Formal Definition pub trait PlaintextEntity: AbstractEntity<Kind = PlaintextKind> {}