1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use crate::maybestd::{
io::{Error, ErrorKind, Result},
vec::Vec,
};
use crate::schema::BorshSchemaContainer;
use crate::{BorshDeserialize, BorshSchema, BorshSerialize};
pub fn try_from_slice_with_schema<T: BorshDeserialize + BorshSchema>(v: &[u8]) -> Result<T> {
let (schema, object) = <(BorshSchemaContainer, T)>::try_from_slice(v)?;
if T::schema_container() != schema {
return Err(Error::new(
ErrorKind::InvalidData,
"Borsh schema does not match",
));
}
Ok(object)
}
pub fn try_to_vec_with_schema<T: BorshSerialize + BorshSchema>(value: &T) -> Result<Vec<u8>> {
let schema = T::schema_container();
let mut res = schema.try_to_vec()?;
res.extend(value.try_to_vec()?);
Ok(res)
}