[][src]Struct succinct_rs::bit_vector::BitVectorString

pub struct BitVectorString { /* fields omitted */ }

Provides validated string representation of BitVector.

Methods

impl BitVectorString[src]

pub fn new(s: &str) -> BitVectorString[src]

Constructor.

'0' is interpreted as 0. '1' is interpreted as 1. '_' is just ignored.

Examples

use succinct_rs::bit_vector::BitVectorString;

let bvs = BitVectorString::new("01");
assert_eq!(bvs.str(), "01");

let bvs = BitVectorString::new("0111_0101");
assert_eq!(bvs.str(), "01110101");

Panics

When:

  • s contains any character other than '0', '1', and '_'.
  • s does not contain any '0' or '1'

pub fn str(&self) -> &str[src]

Getter.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]