1 2 3 4 5 6 7
use super::*; impl GridEdgeAtlas { pub fn save<P>(&self, path: P) -> ImageResult<()> where P: AsRef<Path> { self.image.save(path) } }