[][src]Struct abin::NewBin

pub struct NewBin { /* fields omitted */ }

Default implementation used to create Bin. See BinFactory for documentation.

use abin::{NewBin, BinFactory, Bin, AnyBin};
let bin : Bin = NewBin::from_static("Hello, I'm a binary!".as_bytes());
assert_eq!("Hello, I'm a binary!".as_bytes(), bin.as_slice());

Implementations

impl NewBin[src]

pub fn builder<'a>() -> impl BinBuilder<'a, T = Bin>[src]

Constructs a builder that can be used to create Bin.

Trait Implementations

impl BooToOwned<[u8], Bin> for NewBin[src]

Auto Trait Implementations

impl RefUnwindSafe for NewBin

impl Send for NewBin

impl Sync for NewBin

impl Unpin for NewBin

impl UnwindSafe for NewBin

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.