ICNFetchResult

Trait ICNFetchResult 

Source
pub trait ICNFetchResult<ValueType>: PNSObject
where ValueType: PNSObject + FromId,
{ // Provided methods fn p_current_history_token(&self) -> NSData { ... } fn p_value(&self) -> ValueType { ... } }
Expand description

Provided Methods§

Source

fn p_current_history_token(&self) -> NSData

Source

fn p_value(&self) -> ValueType

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<ValueType> ICNFetchResult<ValueType> for CNFetchResult<ValueType>
where ValueType: PNSObject + FromId,