Struct noodles::vcf::record::Ids[][src]

pub struct Ids(_);
Expand description

VCF record IDs (ID).

Methods from Deref<Target = IndexSet<String, RandomState>>

Computes in O(1) time.

Return a reference to the set’s BuildHasher.

Return the number of elements in the set.

Computes in O(1) time.

Returns true if the set contains no elements.

Computes in O(1) time.

Return an iterator over the values of the set, in their order

Return an iterator over the values that are in self but not other.

Values are produced in the same order that they appear in self.

Return an iterator over the values that are in self or other, but not in both.

Values from self are produced in their original order, followed by values from other in their original order.

Return an iterator over the values that are in both self and other.

Values are produced in the same order that they appear in self.

Return an iterator over all values that are in self or other.

Values from self are produced in their original order, followed by values that are unique to other in their original order.

Return true if an equivalent to value exists in the set.

Computes in O(1) time (average).

Return a reference to the value stored in the set, if it is present, else None.

Computes in O(1) time (average).

Return item index and value

Return item index, if it exists in the set

Get a value by index

Valid indices are 0 <= index < self.len()

Computes in O(1) time.

Get the first value

Computes in O(1) time.

Get the last value

Computes in O(1) time.

Returns true if self has no elements in common with other.

Returns true if all elements of self are contained in other.

Returns true if all elements of other are contained in self.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

The resulting type after dereferencing.

Dereferences the value.

Formats the value using the given formatter. Read more

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.