use crate::;
use Deserialize;
use Serialize;
/// Tries to convert a struct that implements serde's serialize into
/// an `BorrowedValue`
///
/// # Errors
///
/// Will return `Err` if value fails to be turned into a borrowed value
/// Tries to convert a `BorrowedValue` into a struct that implements
/// serde's Deserialize interface
///
/// # Errors
///
/// Will return `Err` if `value` can not be deserialized