[src]

Function std::task::try

pub fn try<T: Send>(f: proc() -> T) -> Result<T, ~Any<Send>>

Execute a function in another task and return either the return value of the function or result::err.

This is equivalent to task().try.