async-graphql/src/types/external/smol_str.rs
lfn3 7aea053240 Add support for SmolStr via a feature.
SmolStr is an immutable "packed" string that uses the space normally occupied
by a String's header if the String is short enough.
2021-11-30 09:44:33 +08:00

26 lines
645 B
Rust

use smol_str::SmolStr;
use crate::{InputValueError, InputValueResult, Scalar, ScalarType, Value};
#[Scalar(
internal,
name = "SmolStr",
specified_by_url = "https://docs.rs/smol_str/latest/smol_str/struct.SmolStr.html"
)]
impl ScalarType for SmolStr {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::String(s) => Ok(SmolStr::new(s)),
_ => Err(InputValueError::expected_type(value)),
}
}
fn is_valid(value: &Value) -> bool {
matches!(value, Value::String(_))
}
fn to_value(&self) -> Value {
Value::String(self.to_string())
}
}