hive-console-sdk 0.3.19

Rust SDK for Hive Console
Documentation
use std::string::FromUtf8Error;

use crate::expressions::FromVrlValue;
use vrl::core::Value as VrlValue;

/// Error type for String conversion failures
#[derive(Debug, thiserror::Error, Clone)]
pub enum StringConversionError {
    #[error("Failed to convert bytes to UTF-8 string: {0}")]
    InvalidUtf8(#[from] FromUtf8Error),

    #[error("Cannot convert {type_name} to string")]
    UnsupportedType { type_name: String },
}

impl FromVrlValue for String {
    type Error = StringConversionError;

    #[inline]
    fn from_vrl_value(value: VrlValue) -> Result<Self, Self::Error> {
        match value {
            VrlValue::Bytes(b) => Ok(String::from_utf8(b.to_vec())?),
            VrlValue::Integer(i) => Ok(i.to_string()),
            VrlValue::Float(f) => Ok(f.to_string()),
            VrlValue::Boolean(b) => Ok(if b { "true" } else { "false" }.to_string()),
            VrlValue::Null => Ok(String::new()),
            other => Err(StringConversionError::UnsupportedType {
                type_name: other.kind().to_string(),
            }),
        }
    }
}