Struct ares::DecoderResult
source · pub struct DecoderResult {
pub text: Vec<String>,
pub path: Vec<CrackResult>,
}Expand description
DecoderResult is the result of decoders
Fields§
§text: Vec<String>The text we have from the decoder, as a vector because the decoder might return more than 1 text (caesar)
path: Vec<CrackResult>The list of decoders we have so far The CrackResult contains more than just each decoder, such as the keys used or the checkers used.