util/frame/video: derive PartialEq and Eq

This commit is contained in:
meh 2015-05-31 19:29:04 +02:00
parent 636a372121
commit f8d4403c3a

View File

@ -10,6 +10,7 @@ use ::picture;
use ::color;
use super::Frame;
#[derive(PartialEq, Eq)]
pub struct Video(Frame);
impl Video {