1 2 3 4 5 6 7 8 9 10 11 12 13
//! rust-compression //! //! # Licensing //! This Source Code is subject to the terms of the Mozilla Public License //! version 2.0 (the "License"). You can obtain a copy of the License at //! <http://mozilla.org/MPL/2.0/>. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum Action { Run, Flush, Finish, }