fix: make SeString payloads public

This commit is contained in:
Anna 2021-10-03 22:39:37 -04:00
parent 4bf754e87b
commit 593900a5b8
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0
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> {