// Copyright (c) 2017 Martijn Rijkeboer // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use version::Version; use variant::Variant; /// Structure that contains the decoded data. #[derive(Debug, Eq, PartialEq)] pub struct Decoded { /// The variant. pub variant: Variant, /// The version. pub version: Version, /// The amount of memory requested (KiB). pub mem_cost: u32, /// The number of passes. pub time_cost: u32, /// The parallelism. pub parallelism: u32, /// The salt. pub salt: Vec, /// The hash. pub hash: Vec, }