Enum rexsgdata::SgData [] [src]

pub enum SgData {
    SgList(SgList),
    SgVec(Vec<Vec<u8>>),
    Direct(Vec<u8>),
    Element(Vec<Element>),
}

Variants

Trait Implementations

impl Debug for SgData
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for SgData
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<SgList> for SgData
[src]

[src]

Performs the conversion.

impl From<Vec<u8>> for SgData
[src]

[src]

Performs the conversion.

impl From<Vec<Vec<u8>>> for SgData
[src]

[src]

Performs the conversion.

impl FromIterator<u8> for SgData
[src]

[src]

Creates a value from an iterator. Read more

impl FromIterator<Vec<u8>> for SgData
[src]

[src]

Creates a value from an iterator. Read more

impl FromIterator<Element> for SgData
[src]

[src]

Creates a value from an iterator. Read more

impl Serialize for SgData
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl IntoIterator for SgData
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

Auto Trait Implementations

impl Send for SgData

impl Sync for SgData