Struct libdata::column::FlowTags []

pub struct FlowTags(_);

A reference counted handle to Tags

This is an easily clonable handle towards Tags. The Tags inside can be modified.

Note that comparison and hash identity is based on the address of the tags. Eg. it doesn't matter what they contain, only the handles referencing the same tags are considered equal and the hash and comparison order doesn't change when modifying the content. This allows using the FlowTags as an unique handle to a flow.

Due to the Defer trait it can be manipulated simply as the internal RefCell<Tags>.

Methods

impl FlowTags
[src]

Creates a new FlowTags out of simple tags.

Methods from Deref<Target = Rc<RefCell<Tags>>>

Trait Implementations

impl Clone for FlowTags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FlowTags
[src]

Formats the value using the given formatter.

impl Deref for FlowTags
[src]

The resulting type after dereferencing

The method called to dereference a value

impl PartialEq for FlowTags
[src]

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

This method tests for !=.

impl Eq for FlowTags
[src]

impl Hash for FlowTags
[src]

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

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

impl PartialOrd for FlowTags
[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 Ord for FlowTags
[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