hcl::ser

Struct LabeledBlock

Source
pub struct LabeledBlock<T>(/* private fields */);
Expand description

A transparent wrapper type which hints the Serializer to serialize T as a labeled HCL block.

When passed to a serializer other than the one from this crate, a LabeledBlock<T> serializes exactly like T, if T implements serde::Serialize.

A LabeledBlock<T> can only be used in the value position of a map-like structure. For example:

  • It can be used to wrap the value type of a map, e.g. Map<K, LabeledBlock<T>>
  • As the value of a struct field, e.g. struct S { field: LabeledBlock<T> }
  • Or as the value of an enum variant, e.g. enum E { Variant(LabeledBlock<T>) }

The serialized block’s identifier will be the respective map key, struct field name or variant name.

The wrapped T must be shaped as follows to be serialized as a labeled HCL block:

  • A map-like value (e.g. a map or struct) where the value may to be another LabeledBlock<T>, in which case a block with multiple labels is produced. Can be nested arbitrarily deep to allow for any number of block labels.
  • A sequence-like value (e.g. a vector, slice or tuple) with map-like elements as described above. In this case, multiple blocks with the same identifier and labels are produced.

Wrapping a type T that does not fulfil one of the criteria above in a LabeledBlock<T> will result in serialization errors.

For more convenient usage, see the labeled_block and doubly_labeled_block functions.

§Example

use hcl::ser::LabeledBlock;
use indexmap::{indexmap, IndexMap};
use serde::Serialize;

#[derive(Serialize)]
struct Config {
    user: LabeledBlock<IndexMap<String, User>>,
}

#[derive(Serialize)]
struct User {
    email: String,
}

let users = indexmap! {
    "john".into() => User {
        email: "johndoe@example.com".into(),
    },
    "jane".into() => User {
        email: "janedoe@example.com".into(),
    },
};

let config = Config {
    user: LabeledBlock::new(users),
};

let expected = r#"
user "john" {
  email = "johndoe@example.com"
}

user "jane" {
  email = "janedoe@example.com"
}
"#.trim_start();

assert_eq!(hcl::to_string(&config)?, expected);

Implementations§

Source§

impl<T> LabeledBlock<T>

Source

pub fn new(value: T) -> LabeledBlock<T>

Create a new LabeledBlock<T> from a T.

Source

pub fn into_inner(self) -> T

Consume the LabeledBlock and return the wrapped T.

Trait Implementations§

Source§

impl<T> Clone for LabeledBlock<T>
where T: Clone,

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> Debug for LabeledBlock<T>
where T: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Deref for LabeledBlock<T>

Source§

type Target = T

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<T> DerefMut for LabeledBlock<T>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<'de, T> Deserialize<'de> for LabeledBlock<T>
where T: Deserialize<'de>,

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<T> Serialize for LabeledBlock<T>
where T: Serialize,

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<T> Freeze for LabeledBlock<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for LabeledBlock<T>
where T: RefUnwindSafe,

§

impl<T> Send for LabeledBlock<T>
where T: Send,

§

impl<T> Sync for LabeledBlock<T>
where T: Sync,

§

impl<T> Unpin for LabeledBlock<T>
where T: Unpin,

§

impl<T> UnwindSafe for LabeledBlock<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,