Struct hcl::ser::Block

source ·
pub struct Block<T>(_);
Expand description

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

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

A Block<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, Block<T>>
  • As the value of a struct field, e.g. struct S { field: Block<T> }
  • Or as the value of an enum variant, e.g. enum E { Variant(Block<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 an HCL block:

  • A map-like value (e.g. a map or struct).
  • 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 are produced.

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

For more convenient usage, see the block function.

Example

use hcl::ser::Block;
use serde::Serialize;

#[derive(Serialize)]
struct Config {
    user: Block<Vec<User>>,
}

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

let users = vec![
    User {
        name: "john".into(),
        email: "johndoe@example.com".into(),
    },
    User {
        name: "jane".into(),
        email: "janedoe@example.com".into(),
    },
];

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

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

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

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

Implementations§

source§

impl<T> Block<T>

source

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

Create a new Block<T> from a T.

source

pub fn into_inner(self) -> T

Consume the Block and return the wrapped T.

Trait Implementations§

source§

impl<T> Clone for Block<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 Block<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 Block<T>

§

type Target = T

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<T> DerefMut for Block<T>

source§

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

Mutably dereferences the value.
source§

impl<'de, T> Deserialize<'de> for Block<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 Block<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> RefUnwindSafe for Block<T>where T: RefUnwindSafe,

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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