1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
use bytes::Bytes;
use crate::{InputValueError, InputValueResult, Scalar, ScalarType, Value};
/// The `Binary` scalar type represents binary data.
#[Scalar(internal)]
impl ScalarType for Bytes {
    fn parse(value: Value) -> InputValueResult<Self> {
        match value {
            Value::Binary(data) => Ok(data),
            _ => Err(InputValueError::expected_type(value)),
        }
    }
    fn is_valid(value: &Value) -> bool {
        matches!(value, Value::Binary(_))
    }
    fn to_value(&self) -> Value {
        Value::Binary(self.clone())
    }
}