Function rotate270_in

pub fn rotate270_in<I, Container>(image: &I, destination: &mut ImageBuffer<I::Pixel, Container>) -> ImageResult<()>
where
    I: GenericImageView,
    I::Pixel: 'static,
    Container: DerefMut<Target = [<I::Pixel as Pixel>::Subpixel]>,

Rotate an image 270 degrees clockwise and put the result into the destination ImageBuffer.