fix: make data guards public

This commit is contained in:
EETagent 2022-11-07 19:52:54 +01:00
parent 077adfd117
commit 9f47bff2fa
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ use rocket::http::{ContentType, Status};
use rocket::outcome::Outcome;
use rocket::request::Request;
struct Letter(Vec<u8>);
pub struct Letter(Vec<u8>);
impl Into<Vec<u8>> for Letter {
fn into(self) -> Vec<u8> {

View file

@ -3,7 +3,7 @@ use rocket::http::{ContentType, Status};
use rocket::outcome::Outcome;
use rocket::request::Request;
struct Portfolio(Vec<u8>);
pub struct Portfolio(Vec<u8>);
impl Into<Vec<u8>> for Portfolio {
fn into(self) -> Vec<u8> {