Crate fuchsia_component_runtime

Crate fuchsia_component_runtime 

Source

Structs§

Connector
A connector capability can be invoked to send a channel to the creator of the connector.
ConnectorReceiver
Receives new channels sent over a Connector
ConnectorRouter
A connector router may be used to request it produce a Connector capability. The router may decide to do so, decline to do so, or return an error, and it may rely on the contents of the metadata provided when route is called to do so. Routers may also delegate the request to other routers, often mutating metadata when they do.
ConnectorRouterReceiver
A connector router receiver will receive requests for connector capabilities.
Data
A data capability holds a bit of static data which can be read back.
DataRouter
A data router may be used to request it produce a Data capability. The router may decide to do so, decline to do so, or return an error, and it may rely on the contents of the metadata provided when route is called to do so. Routers may also delegate the request to other routers, often mutating metadata when they do.
DataRouterReceiver
A data router receiver will receive requests for data capabilities.
Dictionary
A dictionary is a key-value mapping of names to other capabilities.
DictionaryKeysStream
DictionaryRouter
A dictionary router may be used to request it produce a Dictionary capability. The router may decide to do so, decline to do so, or return an error, and it may rely on the contents of the metadata provided when route is called to do so. Routers may also delegate the request to other routers, often mutating metadata when they do.
DictionaryRouterReceiver
A dictionary router receiver will receive requests for dictionary capabilities.
DirConnector
A dir connector can be invoked to send a fuchsia.io open request to the creator of the dir connector.
DirConnectorReceiver
Receives new fuchsia.io open requests sent over a DirConnector
DirConnectorRequest
DirConnectorRouter
A dir connector router may be used to request it produce a DirConnector capability. The router may decide to do so, decline to do so, or return an error, and it may rely on the contents of the metadata provided when route is called to do so. Routers may also delegate the request to other routers, often mutating metadata when they do.
DirConnectorRouterReceiver
A dir connector router receiver will receive requests for dir connector capabilities.
InstanceToken
An instance token is an opaque identifier tied to a specific component instance. Component manager relies on these internally to identify which component has initiated a given routing operation.

Enums§

Capability
A capability is a typed reference to an object owned by component manager. This reference which may used to interact with the referenced object or this reference may be passed to another component (or component manager itself).
DataValue
The value of a data capability. Can be stored in or retrieved from a Data.