use std::collections::hash_map::DefaultHasher;
use std::fmt;
use std::hash::Hash;
use crate::node::Node;
#[derive(Clone, Debug)]
pub struct Blob {
content: String,
}
impl Blob {
#[inline]
pub fn new<T>(content: T) -> Self
where
T: Into<String>,
{
Blob {
content: content.into(),
}
}
}
impl fmt::Display for Blob {
#[inline]
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
self.content.fmt(formatter)
}
}
impl Node for Blob {
#[inline]
fn get_name(&self) -> &str {
"blob"
}
}
impl super::NodeDefaultHash for Blob {
#[inline]
fn default_hash(&self, state: &mut DefaultHasher) {
self.content.hash(state);
}
}