Struct serde_dhall::Serializer[][src]

pub struct Serializer<'a, T, A> { /* fields omitted */ }

Controls how a Dhall value is written.

This builder exposes the ability to configure how a value is serialized, and to set type annotations.

When using Serializer, you'll create it with serialize(), then chain calls to methods to set each option, then call to_string(). This will give you a Result containing the input serialized to Dhall.

Note that if you do not provide a type annotation, some values may not be convertible to Dhall, like empty lists or enums.

Examples

Serializing without a type annotation:

use serde_dhall::serialize;

let string = serialize(&1i64).to_string()?;
assert_eq!(string, "+1".to_string());

Serializing with an automatic type annotation:

use serde_dhall::serialize;

let data: Option<u64> = None;
let string = serialize(&data).static_type_annotation().to_string()?;
assert_eq!(string, "None Natural".to_string());

Implementations

impl<'a, T> Serializer<'a, T, NoAnnot>[src]

pub fn type_annotation<'ty>(
    self,
    ty: &'ty SimpleType
) -> Serializer<'a, T, ManualAnnot<'ty>>
[src]

Provides a type to the serialization process. The provided value will be checked against that type, and the type will be used when Dhall needs it, like for empty lists or for unions.

In many cases the Dhall type that corresponds to a Rust type can be inferred automatically. See the StaticType trait and the static_type_annotation() method for that.

Example

use serde_dhall::{serialize, from_str, SimpleType, SimpleValue};

let ty = from_str("< A | B: Bool >").parse()?;
let data = SimpleValue::Union("A".to_string(), None);
let string = serialize(&data)
    .type_annotation(&ty)
    .to_string()?;
assert_eq!(string, "< A | B: Bool >.A".to_string());

// Invalid data fails the type validation; serialization would have succeeded otherwise.
let ty = SimpleType::Integer;
assert!(
    serialize(&Some(0u64))
        .type_annotation(&ty)
        .to_string()
        .is_err()
);

pub fn static_type_annotation(self) -> Serializer<'a, T, StaticAnnot>[src]

Uses the type of T in the serialization process. This will be used when Dhall needs it, like for empty lists or for unions.

T must implement the StaticType trait. If it doesn't, you can use type_annotation()

Example

use serde::Serialize;
use serde_dhall::{serialize, StaticType};

#[derive(Serialize, StaticType)]
enum MyOption {
    MyNone,
    MySome(u64),
}

let data = MyOption::MySome(0);
let string = serialize(&data)
    .static_type_annotation()
    .to_string()?;
// The resulting Dhall string depends on the type annotation; it could not have been
// printed without it.
assert_eq!(string, "< MyNone | MySome: Natural >.MySome 0".to_string());

impl<'a, T, A> Serializer<'a, T, A> where
    A: TypeAnnot, 
[src]

pub fn to_string(&self) -> Result<String> where
    T: ToDhall + HasAnnot<A>, 
[src]

Prints the chosen value with the options provided.

If you enabled static annotations, T is required to implement StaticType.

Note that if you do not provide a type annotation, some values may not be convertible to Dhall, like empty lists or enums.

Example

use serde_dhall::serialize;

let string = serialize(&1i64).static_type_annotation().to_string()?;
assert_eq!(string, "+1".to_string());

Trait Implementations

impl<'a, T: Clone, A: Clone> Clone for Serializer<'a, T, A>[src]

impl<'a, T: Debug, A: Debug> Debug for Serializer<'a, T, A>[src]

Auto Trait Implementations

impl<'a, T, A> RefUnwindSafe for Serializer<'a, T, A> where
    A: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<'a, T, A> Send for Serializer<'a, T, A> where
    A: Send,
    T: Sync
[src]

impl<'a, T, A> Sync for Serializer<'a, T, A> where
    A: Sync,
    T: Sync
[src]

impl<'a, T, A> Unpin for Serializer<'a, T, A> where
    A: Unpin
[src]

impl<'a, T, A> UnwindSafe for Serializer<'a, T, A> where
    A: UnwindSafe,
    T: RefUnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.