I have a base64 image and got Vec<u8>
from it and write them to a file.
Here is my code:
let file_contents_base64: Vec<u8> = image_base64::from_base64(
String::from(&file_contents_string_vec[0])
);
I want to write the file_contents_base64
variable to a file.