Fix RawValue having only private fields

pull/3/head
trivernis 2 years ago
parent 004392531d
commit 3f16466b3a
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -1,6 +1,6 @@
[package]
name = "embed-nu"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/Trivernis/embed-nu"

@ -3,7 +3,8 @@ use rusty_value::{Fields, HashableValue, RustyValue};
use crate::utils::NewEmpty;
pub struct RawValue(Value);
/// A helper struct to allow IntoValue operations for nu values
pub struct RawValue(pub Value);
/// Converts the given type into a value
/// This trait is implemented for all types that

Loading…
Cancel
Save