Enum mime_multipart::Node [] [src]

pub enum Node {
    Part(Part),
    File(FilePart),
    Multipart((Headers, Vec<Node>)),
}

A multipart part which could be either a file, in memory, or another multipart container containing nested parts.

Variants

A part in memory

A part streamed to a file

A container of nested multipart parts

Trait Implementations

impl Clone for Node
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Node
[src]

Formats the value using the given formatter.