Something horribly broken. But added downloading

This commit is contained in:
Igor Katson 2021-06-26 00:32:52 +01:00
parent 0a640daba4
commit e1354e8a85
5 changed files with 160 additions and 28 deletions

View file

@ -110,3 +110,9 @@ impl<'a> From<&'a [u8]> for ByteString {
Self(b.into())
}
}
impl From<Vec<u8>> for ByteString {
fn from(b: Vec<u8>) -> Self {
Self(b)
}
}