[][src]Struct obfstr::ObfBuffer

#[repr(transparent)]pub struct ObfBuffer<A>(_);

Obfuscated string buffer.

This type represents the string buffer after decryption on the stack.

Implementations

impl<A: FixedSizeArray<u8>> ObfBuffer<A>[src]

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

Trait Implementations

impl<A: FixedSizeArray<u8>> AsRef<str> for ObfBuffer<A>[src]

impl<A: Clone> Clone for ObfBuffer<A>[src]

impl<A: Copy> Copy for ObfBuffer<A>[src]

impl<A: FixedSizeArray<u8>> Debug for ObfBuffer<A>[src]

impl<A: FixedSizeArray<u8>> Deref for ObfBuffer<A>[src]

type Target = str

The resulting type after dereferencing.

impl<A: FixedSizeArray<u8>> Display for ObfBuffer<A>[src]

Auto Trait Implementations

impl<A> Send for ObfBuffer<A> where
    A: Send

impl<A> Sync for ObfBuffer<A> where
    A: Sync

impl<A> Unpin for ObfBuffer<A> where
    A: Unpin

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.