pub fn directory_open_async(
    directory: &DirectorySynchronousProxy,
    path: &str,
    flags: OpenFlags
) -> Result<Channel, Status>
Expand description

Open the given path in the given directory without blocking.

A zx::Channel to the opened node is returned (or an error).

It is an error to supply the OPEN_FLAG_DESCRIBE flag in flags.

This function will “succeed” even if the given path does not exist in the given directory because this function does not wait for the directory to confirm that the path exists.