1 2 3 4 5 6 7 8
use crate::Uncompressed; use std::io::Write; impl Uncompressed { pub fn to_writer<W: Write + ?Sized>(&self, writer: &mut W) -> crate::Result<()> { unimplemented!("TODO: animation::asset::Uncompressed writing"); } }