Struct noodles::vcf::header::info::Info[][src]

pub struct Info { /* fields omitted */ }
Expand description

A VCF header information record (INFO).

Implementations

Creates a VCF header information record.

Examples

use noodles_vcf::{
    header::{info::Type, Info, Number},
    record::info::field::Key,
};

let info = Info::new(
    Key::SamplesWithDataCount,
    Number::Count(1),
    Type::Integer,
    String::from("Number of samples with data"),
);

Returns the information field key.

Examples

use noodles_vcf::{header::Info, record::info::field::Key};
let info = Info::from(Key::SamplesWithDataCount);
assert_eq!(info.id(), &Key::SamplesWithDataCount);

Returns the cardinality of the information field value.

Examples

use noodles_vcf::{header::{Info, Number}, record::info::field::Key};
let info = Info::from(Key::SamplesWithDataCount);
assert_eq!(info.number(), Number::Count(1));

Returns the type of the information field value.

Examples

use noodles_vcf::{header::{info::Type, Info}, record::info::field::Key};
let info = Info::from(Key::SamplesWithDataCount);
assert_eq!(info.ty(), Type::Integer);

Returns the description of the information field.

Examples

use noodles_vcf::{header::Info, record::info::field::Key};
let info = Info::from(Key::SamplesWithDataCount);
assert_eq!(info.description(), "Number of samples with data");

Returns the index of the ID in the dictionary of strings.

This is typically used in BCF.

Examples

use noodles_vcf::{header::Info, record::info::field::Key};
let info = Info::from(Key::SamplesWithDataCount);
assert!(info.idx().is_none());

Returns the extra fields in the record.

This includes fields other than ID, Number, Type, Description, and IDX.

Examples

use noodles_vcf::{header::Info, record::info::field::Key};
let info = Info::from(Key::SamplesWithDataCount);
assert!(info.fields().is_empty());

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

Formats the value using the given formatter. Read more

Performs the conversion.

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

This method tests for !=.

The type returned in the event of a conversion error.

Performs the conversion.

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.