vrl 0.32.0

Vector Remap Language
Documentation
use crate::path::OwnedSegment;
use crate::value::KeyString;
use crate::value::kind::Collection;
use crate::value::kind::collection::{CollectionKey, CollectionRemove};

/// A `field` type that can be used in `Collection<Field>`
#[derive(Debug, Clone, Eq, PartialEq, PartialOrd, Ord, Hash)]
pub struct Field(KeyString);

impl std::fmt::Display for Field {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", OwnedSegment::field(&self.0))
    }
}

impl CollectionKey for Field {
    fn to_segment(&self) -> OwnedSegment {
        OwnedSegment::Field(self.0.clone())
    }
}

impl Field {
    /// Get a `str` representation of the field.
    #[must_use]
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl CollectionRemove for Collection<Field> {
    type Key = Field;

    fn remove_known(&mut self, key: &Field) {
        self.known.remove(key);
    }
}

impl std::ops::Deref for Field {
    type Target = KeyString;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl From<&str> for Field {
    fn from(field: &str) -> Self {
        Self(field.into())
    }
}

impl From<String> for Field {
    fn from(field: String) -> Self {
        Self(field.into())
    }
}

impl From<KeyString> for Field {
    fn from(field: KeyString) -> Self {
        Self(field)
    }
}