noodles_vcf::header::record::value::map

Struct Builder

Source
pub struct Builder<I>
where I: Inner,
{ /* private fields */ }
Expand description

A VCF header record map value builder.

Implementations§

Source§

impl<I> Builder<I>
where I: Inner,

Source

pub fn insert<V>(self, key: Other<I::StandardTag>, value: V) -> Self
where V: Into<String>,

Inserts a key-value pair into the other fields.

Source

pub fn build(self) -> Result<Map<I>, BuildError>

Builds a VCF header record map value.

Source§

impl<I> Builder<I>
where I: Typed, I::Builder: Typed<I>,

Source

pub fn set_number(self, number: I::Number) -> Self

Sets the number.

Source

pub fn set_type(self, ty: I::Type) -> Self

Sets the type.

Source§

impl<I> Builder<I>
where I: Described, I::Builder: Described<I>,

Source

pub fn set_description<D>(self, description: D) -> Self
where D: Into<String>,

Sets the description.

Source§

impl<I> Builder<I>
where I: Indexed, I::Builder: Indexed<I>,

Source

pub fn set_idx(self, idx: usize) -> Self

Sets the index.

Source§

impl Builder<Contig>

Source

pub fn set_length(self, length: usize) -> Self

Sets the length.

Source

pub fn set_md5<D>(self, md5: D) -> Self
where D: Into<String>,

Sets the MD5 hexdigest.

Source

pub fn set_url<U>(self, url: U) -> Self
where U: Into<String>,

Set the URL.

Trait Implementations§

Source§

impl<I> Default for Builder<I>
where I: Inner,

Source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<I> Freeze for Builder<I>
where <I as Inner>::Builder: Freeze,

§

impl<I> RefUnwindSafe for Builder<I>

§

impl<I> Send for Builder<I>
where <I as Inner>::Builder: Send, <I as Inner>::StandardTag: Send,

§

impl<I> Sync for Builder<I>
where <I as Inner>::Builder: Sync, <I as Inner>::StandardTag: Sync,

§

impl<I> Unpin for Builder<I>
where <I as Inner>::Builder: Unpin, <I as Inner>::StandardTag: Unpin,

§

impl<I> UnwindSafe for Builder<I>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.