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