Struct noodles_sam::header::record::value::map::builder::Builder

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

A SAM 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<BString>,

Inserts a key-value pair into the other fields.

§Examples
use bstr::BString;
use noodles_sam::header::record::value::{map::{Header, Tag}, Map};

let nd = match Tag::try_from([b'n', b'd']) {
    Ok(Tag::Other(tag)) => tag,
    _ => unreachable!(),
};

let header = Map::<Header>::builder().insert(nd, "noodles").build()?;

assert_eq!(header.other_fields().get(b"nd"), Some(&BString::from("noodles")));
source

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

Builds a SAM header record map value.

§Examples
use noodles_sam::header::record::value::{map::Header, Map};
let header = Map::<Header>::builder().build()?;
source§

impl Builder<Header>

source

pub fn set_version(self, version: Version) -> Self

Sets a format version.

§Examples
use noodles_sam::header::record::value::{
    map::{self, header::Version},
    Map,
};

let version = Version::new(1, 6);
let header = Map::<map::Header>::builder().set_version(version).build()?;
assert_eq!(header.version(), version);
source§

impl Builder<ReferenceSequence>

source

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

Sets a reference sequence length.

§Examples
use std::num::NonZeroUsize;

use noodles_sam::header::record::value::{map::ReferenceSequence, Map};

let length = NonZeroUsize::try_from(13)?;

let reference_sequence = Map::<ReferenceSequence>::builder()
    .set_length(length)
    .build()?;

assert_eq!(reference_sequence.length(), length);

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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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>,

§

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>,

§

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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more