mxf 0.1.2

Library to read/write following SMPTE 377M (MXF) standard.
Documentation
1
2
3
4
5
6

use std::io::{Read};

pub trait Decoder {
  fn deserialize<Type, R: Read>(&self, stream: &mut R) -> Vec<Type>;
}