fix: make SeString payloads public

This commit is contained in:
Anna 2021-10-03 22:39:37 -04:00
parent 58ad836978
commit 333af76db3
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ pub use self::{
}; };
#[derive(Debug, PartialEq)] #[derive(Debug, PartialEq)]
pub struct SeString(Vec<Payload>); pub struct SeString(pub Vec<Payload>);
impl SeString { impl SeString {
pub fn parse<B: AsRef<[u8]>>(bytes: B) -> Result<Self, Error> { pub fn parse<B: AsRef<[u8]>>(bytes: B) -> Result<Self, Error> {