1 2 3 4 5 6 7
use super::Blob; impl From<Vec<u8>> for Blob { fn from(bytes: Vec<u8>) -> Self { Self(bytes.into()) } }