Struct libdata::column::Ident []

pub struct Ident(_);

An identity of a column.

While the Value structure holds the actual data (one „cell“ of the table), this is something like the name of the column. This specifies we want eg. a remote IP address without having the concrete IP address in hand.

Methods

impl Ident
[src]

Decodes a value of the corresponding column type.

It also can decode null as the None variant, eg. it assumes the value is optional.

Panics

If the ident hasn't been registered.

Provides the identity of the given column type.

Trait Implementations

impl Copy for Ident
[src]

impl Clone for Ident
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Ident
[src]

Formats the value using the given formatter.

impl Eq for Ident
[src]

impl Hash for Ident
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Ord for Ident
[src]

This method returns an Ordering between self and other. Read more

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the maximum of two values. Read more

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the minimum of two values. Read more

impl PartialEq for Ident
[src]

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

This method tests for !=.

impl PartialOrd for Ident
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Serialize for Ident
[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for Ident
[src]

Deserialize this value from the given Serde deserializer. Read more