new trait is public now
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good
Rust/spacepackets/pipeline/pr-main This commit looks good

This commit is contained in:
Robin Müller 2023-11-11 18:48:48 +01:00
parent 18d650316c
commit e6408f74c1
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -149,7 +149,7 @@ impl From<TlvLvError> for PduError {
}
}
trait WritablePduPacket {
pub trait WritablePduPacket {
fn write_to_bytes(&self, buf: &mut [u8]) -> Result<usize, PduError>;
}