Trait objc_encode::Encodings [] [src]

pub trait Encodings {
    fn each<F: EncodingsIterateCallback>(&self, _: &mut F);
    fn eq_encodings<T: ?Sized + Encodings>(&self, encs: &T) -> bool;

    fn write_all<W: Write>(&self, writer: &mut W) -> Result { ... }
}

Types that represent a collection of Encodings.

Required Methods

Iterates over the encodings of Self, calling the provided callback for each.

Returns whether Self is equal to the given encodings,

Provided Methods

Writes each encoding of Self in order to the given writer.

Implementors