[][src]Struct safer_ffi::headers::HashSetDefiner

pub struct HashSetDefiner<'out> {
    pub defines_set: HashSet<String>,
    pub out: &'out mut dyn Write,
}
This is supported on feature="headers" only.

Simplest implementation of a Definer: a HashSet<String>, &'_ mut dyn Write pair.

Fields

defines_set: HashSet<String>
This is supported on feature="headers" only.
out: &'out mut dyn Write
This is supported on feature="headers" only.

Trait Implementations

impl<'_> Definer for HashSetDefiner<'_>[src]

Auto Trait Implementations

impl<'out> !RefUnwindSafe for HashSetDefiner<'out>

impl<'out> !Send for HashSetDefiner<'out>

impl<'out> !Sync for HashSetDefiner<'out>

impl<'out> Unpin for HashSetDefiner<'out>

impl<'out> !UnwindSafe for HashSetDefiner<'out>

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> ManuallyDropMut for T

type Ret = ManuallyDrop<T>

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.