noodles_sam::header::record::value::map

Struct Map

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

A SAM header record map value.

Implementations§

Source§

impl Map<Header>

Source

pub fn new(version: Version) -> Self

Creates a SAM header record header map value with a format version.

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

let header = Map::<map::Header>::new(Version::new(1, 6));
Source

pub fn version(&self) -> Version

Returns the format version.

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

let header = Map::<map::Header>::new(Version::new(1, 6));
assert_eq!(header.version(), Version::new(1, 6));
Source

pub fn version_mut(&mut self) -> &mut Version

Returns a mutable reference to the format version.

§Examples
use noodles_sam::header::record::value::{map::{self, header::Version}, Map};
let mut header = Map::<map::Header>::default();
*header.version_mut() = Version::new(1, 5);
assert_eq!(header.version(), Version::new(1, 5));
Source§

impl Map<ReferenceSequence>

Source

pub fn new(length: NonZeroUsize) -> Self

Creates a reference sequence with a length.

§Examples
use std::num::NonZeroUsize;
use noodles_sam::header::record::value::{map::ReferenceSequence, Map};
let reference_sequence = Map::<ReferenceSequence>::new(NonZeroUsize::try_from(13)?);
Source

pub fn length(&self) -> NonZeroUsize

Returns the reference sequence length.

§Examples
use std::num::NonZeroUsize;
use noodles_sam::header::record::value::{map::ReferenceSequence, Map};
let reference_sequence = Map::<ReferenceSequence>::new(NonZeroUsize::try_from(13)?);
assert_eq!(usize::from(reference_sequence.length()), 13);
Source

pub fn length_mut(&mut self) -> &mut NonZeroUsize

Returns a mutable reference to the reference sequence length.

§Examples
use std::num::NonZeroUsize;

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

let length = NonZeroUsize::try_from(13)?;
let mut reference_sequence = Map::<ReferenceSequence>::new(length);
assert_eq!(reference_sequence.length(), length);

let length = NonZeroUsize::try_from(8)?;
*reference_sequence.length_mut() = length;
assert_eq!(reference_sequence.length(), length);
Source§

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

Source

pub fn builder() -> Builder<I>

Creates a SAM header record map value.

Source

pub fn other_fields(&self) -> &IndexMap<Other<I::StandardTag>, BString>

Returns the nonstandard fields in the map.

Source

pub fn other_fields_mut( &mut self, ) -> &mut IndexMap<Other<I::StandardTag>, BString>

Returns a mutable reference to the nonstandard fields in the map.

§Example
use bstr::BString;
use noodles_sam::header::record::value::{map::{tag, Header}, Map};
let mut map = Map::<Header>::new(Default::default());
let nd = tag::Other::try_from([b'n', b'd'])?;
map.other_fields_mut().insert(nd, BString::from("noodles"));

Trait Implementations§

Source§

impl<I> Clone for Map<I>
where I: Inner + Clone, I::StandardTag: Clone,

Source§

fn clone(&self) -> Map<I>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<I> Debug for Map<I>
where I: Inner + Debug, I::StandardTag: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<I> Default for Map<I>
where I: Inner + Default,

Source§

fn default() -> Self

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

impl<I> PartialEq for Map<I>

Source§

fn eq(&self, other: &Map<I>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<I> Eq for Map<I>
where I: Inner + Eq, I::StandardTag: Eq,

Source§

impl<I> StructuralPartialEq for Map<I>
where I: Inner,

Auto Trait Implementations§

§

impl<I> Freeze for Map<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for Map<I>

§

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

§

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

§

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

§

impl<I> UnwindSafe for Map<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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.