Struct block2::GlobalBlock[][src]

#[repr(C)]
pub struct GlobalBlock<A, R = ()> { /* fields omitted */ }
Expand description

An Objective-C block that does not capture it’s environment.

This is effectively just a glorified function pointer, and can created and stored in static memory using the global_block macro.

If ConcreteBlock is the Fn-block equivalent, this is likewise the fn-block equivalent.

Methods from Deref<Target = Block<A, R>>

Call self with the given arguments.

Safety

This invokes foreign code that the caller must verify doesn’t violate any of Rust’s safety rules.

For example, if this block is shared with multiple references, the caller must ensure that calling it will not cause a data race.

Trait Implementations

The resulting type after dereferencing.

Dereferences the value.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.