[][src]Trait objc_foundation::INSValue

pub trait INSValue: INSObject {
    type Value: 'static + Copy + Encode;
    fn value(&self) -> Self::Value { ... }
fn encoding(&self) -> Encoding { ... }
fn from_value(value: Self::Value) -> Id<Self> { ... } }

Associated Types

type Value: 'static + Copy + Encode

Loading content...

Provided methods

fn value(&self) -> Self::Value

fn encoding(&self) -> Encoding

fn from_value(value: Self::Value) -> Id<Self>

Loading content...

Implementors

impl<T> INSValue for NSValue<T> where
    T: Any + Copy + Encode
[src]

type Value = T

fn value(&self) -> Self::Value[src]

fn encoding(&self) -> Encoding[src]

fn from_value(value: Self::Value) -> Id<Self>[src]

Loading content...