[][src]Struct abin::NewSBin

pub struct NewSBin { /* fields omitted */ }

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

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

Implementations

impl NewSBin[src]

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

Constructs a builder that can be used to create SBin.

Trait Implementations

impl BooToOwned<[u8], SBin> for NewSBin[src]

Auto Trait Implementations

impl RefUnwindSafe for NewSBin

impl Send for NewSBin

impl Sync for NewSBin

impl Unpin for NewSBin

impl UnwindSafe for NewSBin

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.