Struct hcl::ser::Serializer  
source · pub struct Serializer<'a, W> { /* private fields */ }Expand description
A structure for serializing Rust values into HCL.
Implementations
sourceimpl<'a, W> Serializer<'a, W>where
    W: Write,
 
impl<'a, W> Serializer<'a, W>where
    W: Write,
sourcepub fn new(writer: W) -> Serializer<'a, W>
 
pub fn new(writer: W) -> Serializer<'a, W>
Creates a new Serializer which serializes to the provides writer using the default
formatter.
sourcepub fn with_formatter(formatter: Formatter<'a, W>) -> Serializer<'a, W>
 
pub fn with_formatter(formatter: Formatter<'a, W>) -> Serializer<'a, W>
Creates a new Serializer which uses the provides formatter to format the serialized HCL.
sourcepub fn into_inner(self) -> W
 
pub fn into_inner(self) -> W
Consumes self and returns the wrapped writer.
Trait Implementations
sourceimpl<'a, W> Serializer for &'a mut Serializer<'a, W>where
    W: Write,
 
impl<'a, W> Serializer for &'a mut Serializer<'a, W>where
    W: Write,
type Ok = ()
type Ok = ()
The output type produced by this 
Serializer during successful
serialization. Most serializers that produce text or binary output
should set Ok = () and serialize into an io::Write or buffer
contained within the Serializer instance. Serializers that build
in-memory data structures may be simplified by using Ok to propagate
the data structure around. Read moretype SerializeSeq = SerializeSeq<'a, W>
type SerializeSeq = SerializeSeq<'a, W>
Type returned from 
serialize_seq for serializing the content of the
sequence. Read moretype SerializeTuple = SerializeSeq<'a, W>
type SerializeTuple = SerializeSeq<'a, W>
Type returned from 
serialize_tuple for serializing the content of
the tuple. Read moretype SerializeTupleStruct = SerializeSeq<'a, W>
type SerializeTupleStruct = SerializeSeq<'a, W>
Type returned from 
serialize_tuple_struct for serializing the
content of the tuple struct. Read moretype SerializeTupleVariant = SerializeTupleVariant<'a, W>
type SerializeTupleVariant = SerializeTupleVariant<'a, W>
Type returned from 
serialize_tuple_variant for serializing the
content of the tuple variant. Read moretype SerializeMap = SerializeMap<'a, W>
type SerializeMap = SerializeMap<'a, W>
Type returned from 
serialize_map for serializing the content of the
map. Read moretype SerializeStruct = SerializeStruct<'a, W>
type SerializeStruct = SerializeStruct<'a, W>
Type returned from 
serialize_struct for serializing the content of
the struct. Read moretype SerializeStructVariant = SerializeStructVariant<'a, W>
type SerializeStructVariant = SerializeStructVariant<'a, W>
Type returned from 
serialize_struct_variant for serializing the
content of the struct variant. Read moresourcefn serialize_bool(self, v: bool) -> Result<Self::Ok, Self::Error>
 
fn serialize_bool(self, v: bool) -> Result<Self::Ok, Self::Error>
Serialize a 
bool value. Read moresourcefn serialize_i16(self, v: i16) -> Result<Self::Ok, Self::Error>
 
fn serialize_i16(self, v: i16) -> Result<Self::Ok, Self::Error>
Serialize an 
i16 value. Read moresourcefn serialize_i32(self, v: i32) -> Result<Self::Ok, Self::Error>
 
fn serialize_i32(self, v: i32) -> Result<Self::Ok, Self::Error>
Serialize an 
i32 value. Read moresourcefn serialize_i64(self, v: i64) -> Result<Self::Ok, Self::Error>
 
fn serialize_i64(self, v: i64) -> Result<Self::Ok, Self::Error>
Serialize an 
i64 value. Read moresourcefn serialize_u16(self, v: u16) -> Result<Self::Ok, Self::Error>
 
fn serialize_u16(self, v: u16) -> Result<Self::Ok, Self::Error>
Serialize a 
u16 value. Read moresourcefn serialize_u32(self, v: u32) -> Result<Self::Ok, Self::Error>
 
fn serialize_u32(self, v: u32) -> Result<Self::Ok, Self::Error>
Serialize a 
u32 value. Read moresourcefn serialize_u64(self, v: u64) -> Result<Self::Ok, Self::Error>
 
fn serialize_u64(self, v: u64) -> Result<Self::Ok, Self::Error>
Serialize a 
u64 value. Read moresourcefn serialize_f32(self, v: f32) -> Result<Self::Ok, Self::Error>
 
fn serialize_f32(self, v: f32) -> Result<Self::Ok, Self::Error>
Serialize an 
f32 value. Read moresourcefn serialize_f64(self, v: f64) -> Result<Self::Ok, Self::Error>
 
fn serialize_f64(self, v: f64) -> Result<Self::Ok, Self::Error>
Serialize an 
f64 value. Read moresourcefn serialize_char(self, v: char) -> Result<Self::Ok, Self::Error>
 
fn serialize_char(self, v: char) -> Result<Self::Ok, Self::Error>
Serialize a character. Read more
sourcefn serialize_bytes(self, v: &[u8]) -> Result<Self::Ok, Self::Error>
 
fn serialize_bytes(self, v: &[u8]) -> Result<Self::Ok, Self::Error>
Serialize a chunk of raw byte data. Read more
sourcefn serialize_unit_variant(
    self,
    name: &'static str,
    variant_index: u32,
    variant: &'static str
) -> Result<Self::Ok, Self::Error>
 
fn serialize_unit_variant(
    self,
    name: &'static str,
    variant_index: u32,
    variant: &'static str
) -> Result<Self::Ok, Self::Error>
sourcefn serialize_some<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where
    T: ?Sized + Serialize,
 
fn serialize_some<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where
    T: ?Sized + Serialize,
sourcefn serialize_newtype_struct<T>(
    self,
    name: &'static str,
    value: &T
) -> Result<Self::Ok, Self::Error>where
    T: ?Sized + Serialize,
 
fn serialize_newtype_struct<T>(
    self,
    name: &'static str,
    value: &T
) -> Result<Self::Ok, Self::Error>where
    T: ?Sized + Serialize,
Serialize a newtype struct like 
struct Millimeters(u8). Read moresourcefn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple, Self::Error>
 
fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple, Self::Error>
Begin to serialize a statically sized sequence whose length will be
known at deserialization time without looking at the serialized data.
This call must be followed by zero or more calls to 
serialize_element,
then a call to end. Read moresourcefn serialize_tuple_struct(
    self,
    name: &'static str,
    len: usize
) -> Result<Self::SerializeTupleStruct, Self::Error>
 
fn serialize_tuple_struct(
    self,
    name: &'static str,
    len: usize
) -> Result<Self::SerializeTupleStruct, Self::Error>
Begin to serialize a tuple struct like 
struct Rgb(u8, u8, u8). This
call must be followed by zero or more calls to serialize_field, then a
call to end. Read moresourcefn serialize_newtype_variant<T>(
    self,
    name: &'static str,
    variant_index: u32,
    variant: &'static str,
    value: &T
) -> Result<()>where
    T: ?Sized + Serialize,
 
fn serialize_newtype_variant<T>(
    self,
    name: &'static str,
    variant_index: u32,
    variant: &'static str,
    value: &T
) -> Result<()>where
    T: ?Sized + Serialize,
sourcefn serialize_seq(self, len: Option<usize>) -> Result<Self::SerializeSeq>
 
fn serialize_seq(self, len: Option<usize>) -> Result<Self::SerializeSeq>
Begin to serialize a variably sized sequence. This call must be
followed by zero or more calls to 
serialize_element, then a call to
end. Read moresourcefn serialize_tuple_variant(
    self,
    name: &'static str,
    variant_index: u32,
    variant: &'static str,
    len: usize
) -> Result<Self::SerializeTupleVariant>
 
fn serialize_tuple_variant(
    self,
    name: &'static str,
    variant_index: u32,
    variant: &'static str,
    len: usize
) -> Result<Self::SerializeTupleVariant>
Begin to serialize a tuple variant like 
E::T in enum E { T(u8, u8) }. This call must be followed by zero or more calls to
serialize_field, then a call to end. Read moresourcefn serialize_map(self, len: Option<usize>) -> Result<Self::SerializeMap>
 
fn serialize_map(self, len: Option<usize>) -> Result<Self::SerializeMap>
Begin to serialize a map. This call must be followed by zero or more
calls to 
serialize_key and serialize_value, then a call to end. Read moresourcefn serialize_struct(
    self,
    name: &'static str,
    len: usize
) -> Result<Self::SerializeStruct>
 
fn serialize_struct(
    self,
    name: &'static str,
    len: usize
) -> Result<Self::SerializeStruct>
Begin to serialize a struct like 
struct Rgb { r: u8, g: u8, b: u8 }.
This call must be followed by zero or more calls to serialize_field,
then a call to end. Read moresourcefn serialize_struct_variant(
    self,
    name: &'static str,
    variant_index: u32,
    variant: &'static str,
    len: usize
) -> Result<Self::SerializeStructVariant>
 
fn serialize_struct_variant(
    self,
    name: &'static str,
    variant_index: u32,
    variant: &'static str,
    len: usize
) -> Result<Self::SerializeStructVariant>
Begin to serialize a struct variant like 
E::S in enum E { S { r: u8, g: u8, b: u8 } }. This call must be followed by zero or more calls to
serialize_field, then a call to end. Read moresourcefn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>
 
fn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>
Serialize an 
i128 value. Read moresourcefn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>
 
fn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>
Serialize a 
u128 value. Read moresourcefn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
    I: IntoIterator,
    <I as IntoIterator>::Item: Serialize,
 
fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
    I: IntoIterator,
    <I as IntoIterator>::Item: Serialize,
Collect an iterator as a sequence. Read more
sourcefn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
    K: Serialize,
    V: Serialize,
    I: IntoIterator<Item = (K, V)>,
 
fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
    K: Serialize,
    V: Serialize,
    I: IntoIterator<Item = (K, V)>,
Collect an iterator as a map. Read more
sourcefn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where
    T: Display + ?Sized,
 
fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where
    T: Display + ?Sized,
Serialize a string produced by an implementation of 
Display. Read moresourcefn is_human_readable(&self) -> bool
 
fn is_human_readable(&self) -> bool
Determine whether 
Serialize implementations should serialize in
human-readable form. Read moreAuto Trait Implementations
impl<'a, W> RefUnwindSafe for Serializer<'a, W>where
    W: RefUnwindSafe,
impl<'a, W> Send for Serializer<'a, W>where
    W: Send,
impl<'a, W> Sync for Serializer<'a, W>where
    W: Sync,
impl<'a, W> Unpin for Serializer<'a, W>where
    W: Unpin,
impl<'a, W> UnwindSafe for Serializer<'a, W>where
    W: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more