X6QCJGGFHQ7PFDZ7IURNOIRVYE2Y5LH6FZ6RXRX4OJCNDDFYDO5AC
Ok(String::from(buffer.trim_start_matches("=").trim_start_matches(" ")))
for line in reader.lines() {
if let Ok(cont) = line {
if cont.starts_with('=') {
return Ok(String::from(cont.trim_start_matches("=").trim_start_matches(" ")));
}
} else {
return Err(Box::from("I/O failed"));
}
}