pub struct NamedValue { /* private fields */ }Expand description
Named single value
Associates a human-readable name with a single Value, facilitating
identification, retrieval, and display in configurations, parameter passing,
and complex data structures.
§Features
- Provides stable name identification for values
- Exposes the inner
Valuethrough explicit accessors - Supports
serdeserialization and deserialization
§Use Cases
- Configuration item encapsulation (e.g.,
"port","timeout", etc.) - Named output of key values in logs/monitoring
- Quick location by name in collections
§Deserialization boundaries
Deserialize validates the V1 wire schema and requires a scalar payload,
but it does not create a resource budget by itself. For a complete,
untrusted JSON document, use NamedValue::decode_json_slice or
NamedValue::decode_json_slice_with_limits. When this type is embedded in a
larger document, deserialize it through a resource-bounded outer decoder.
§Examples
use qubit_value::{NamedValue, Value};
let named = NamedValue::new("flag", Value::Bool(true));
assert!(named.value().get_bool().unwrap());The wrapper intentionally does not forward Value methods implicitly:
use qubit_value::{NamedValue, Value};
let named = NamedValue::new("flag", Value::Bool(true));
let _ = named.get_bool();Implementations§
Source§impl NamedValue
impl NamedValue
Sourcepub fn new(name: impl Into<String>, value: Value) -> Self
pub fn new(name: impl Into<String>, value: Value) -> Self
Create a new named value
Creates a binding instance between a name and a value.
§Type Parameters
impl Into<String>- Name source converted into owned storage.
§Parameters
name- Name of the valuevalue- Content of the value
§Returns
Returns a newly created NamedValue instance
§Examples
use qubit_value::{NamedValue, Value};
let named = NamedValue::new("timeout", Value::Int32(30));
assert_eq!(named.name(), "timeout");Sourcepub fn decode_json_slice(input: &[u8]) -> Result<Self, ValueWireDecodeError>
pub fn decode_json_slice(input: &[u8]) -> Result<Self, ValueWireDecodeError>
Sourcepub fn decode_json_slice_with_limits(
input: &[u8],
limits: JsonDecodeLimits,
) -> Result<Self, ValueWireDecodeError>
pub fn decode_json_slice_with_limits( input: &[u8], limits: JsonDecodeLimits, ) -> Result<Self, ValueWireDecodeError>
Decodes a complete named scalar JSON document with explicit limits.
The wrapper name and nested scalar share one accounting session.
§Parameters
input- Complete UTF-8 JSON document to decode.limits- Input and decoded-resource limits.
§Returns
The decoded named scalar.
§Errors
Returns a JSON, wire-contract, or resource-limit error.
Sourcepub fn to_json_vec(&self) -> Result<Vec<u8>, ValueWireEncodeError>
pub fn to_json_vec(&self) -> Result<Vec<u8>, ValueWireEncodeError>
Encodes this named scalar into a bounded compact JSON vector with the default V1 JSON resource profile.
§Returns
Compact UTF-8 JSON bytes for the complete named scalar.
§Errors
Returns ValueWireEncodeError for resource or serialization failures.
Sourcepub fn to_json_vec_with_limits(
&self,
limits: JsonEncodeLimits,
) -> Result<Vec<u8>, ValueWireEncodeError>
pub fn to_json_vec_with_limits( &self, limits: JsonEncodeLimits, ) -> Result<Vec<u8>, ValueWireEncodeError>
Encodes this named scalar into a bounded compact JSON vector.
§Parameters
limits- Resource limits enforced during JSON encoding.
§Returns
Compact UTF-8 JSON bytes for the complete named scalar.
§Errors
Returns ValueWireEncodeError when encoding exceeds limits or the
named scalar cannot be serialized.
Sourcepub fn to_json_writer<W>(&self, writer: W) -> Result<(), ValueWireEncodeError>where
W: Write,
pub fn to_json_writer<W>(&self, writer: W) -> Result<(), ValueWireEncodeError>where
W: Write,
Encodes this named scalar to a writer with the default V1 JSON profile.
§Type Parameters
W- Destination writer type.
§Parameters
writer- Destination receiving the complete named scalar document.
§Returns
Ok(()) after the complete document is written.
§Errors
Returns ValueWireEncodeError for resource, serialization, or writer
failures.
Sourcepub fn to_json_writer_with_limits<W>(
&self,
writer: W,
limits: JsonEncodeLimits,
) -> Result<(), ValueWireEncodeError>where
W: Write,
pub fn to_json_writer_with_limits<W>(
&self,
writer: W,
limits: JsonEncodeLimits,
) -> Result<(), ValueWireEncodeError>where
W: Write,
Encodes this named scalar to a writer after enforcing JSON budgets.
§Type Parameters
W- Destination writer type.
§Parameters
writer- Destination receiving the complete named scalar document.limits- Resource limits enforced during JSON encoding.
§Returns
Ok(()) after the complete document is written.
§Errors
Returns ValueWireEncodeError when encoding exceeds limits, the
named scalar cannot be serialized, or writer rejects output.
Sourcepub fn set_name(&mut self, name: impl Into<String>)
pub fn set_name(&mut self, name: impl Into<String>)
Set a new name
Updates the name bound to the current instance.
§Type Parameters
impl Into<String>- Name source converted into owned storage.
§Parameters
name- The new name
§Examples
use qubit_value::{NamedValue, Value};
let mut named = NamedValue::new("old_name", Value::Bool(true));
named.set_name("new_name");
assert_eq!(named.name(), "new_name");Sourcepub fn into_parts(self) -> (String, Value)
pub fn into_parts(self) -> (String, Value)
Consumes this wrapper and returns its owned name and value.
§Returns
The (name, value) pair without cloning either component.
Trait Implementations§
Source§impl Clone for NamedValue
impl Clone for NamedValue
Source§fn clone(&self) -> NamedValue
fn clone(&self) -> NamedValue
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for NamedValue
impl Debug for NamedValue
Source§impl<'de> Deserialize<'de> for NamedValue
impl<'de> Deserialize<'de> for NamedValue
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserializes a named scalar value from the V1 wire contract.
This implementation validates the wire schema and scalar shape, but
inherits resource accounting from deserializer. Callers handling a
complete, untrusted JSON document should use the bounded JSON helpers on
NamedValue instead of an unbounded Serde entry point.
§Type Parameters
D- Serde deserializer that supplies the input and any outer budget.
§Parameters
deserializer- Source containing one named V1 scalar envelope.
§Returns
The decoded name and scalar value.
§Errors
Returns D::Error for an invalid V1 envelope, an unsupported payload,
or a payload whose shape is not scalar.
impl Eq for NamedValue
Source§impl From<NamedValue> for NamedMultiValues
impl From<NamedValue> for NamedMultiValues
Source§fn from(named: NamedValue) -> Self
fn from(named: NamedValue) -> Self
Construct NamedMultiValues from NamedValue
Reuses the name and promotes the single value to a MultiValues
containing only one element.
Source§impl Hash for NamedValue
impl Hash for NamedValue
Source§impl PartialEq for NamedValue
impl PartialEq for NamedValue
Source§impl Redact for NamedValue
impl Redact for NamedValue
Source§fn write_redacted(&self, writer: &mut RedactionWriter<'_>)
fn write_redacted(&self, writer: &mut RedactionWriter<'_>)
Writes the name and policy-selected value through one session.