Crate fuchsia_component_server

Source
Expand description

Tools for providing Fuchsia services.

Structs§

FidlService
A wrapper for functions from RequestStream to Output which implements Service.
FidlServiceMember
A wrapper for functions from ServiceRequest to Output which implements Service.
FidlServiceServerConnector
A wrapper for functions from ServerEnd to Output which implements Service.
MissingStartupHandle
An error indicating the startup handle on which the FIDL server attempted to start was missing.
ProtocolConnector
ProtocolConnector allows connecting to capabilities exposed by ServiceFs
ServiceFs
A filesystem which connects clients to services.
ServiceFsDir
A directory within a ServiceFs.
ServiceObj
A thread-safe (Send) trait object encapsulating a Service with the given Output type.
ServiceObjLocal
A !Send (non-thread-safe) trait object encapsulating a Service with the given Output type.
StallableServiceFs
A wrapper around the base ServiceFs that streams out capability connection requests. Additionally, it will yield Item::Stalled if there is no work happening in the fs and the main outgoing directory connection has not received messages for some time.

Enums§

Item
The item yielded by a StallableServiceFs stream.

Traits§

Service
Service connects channels to service instances.
ServiceObjTrait
A trait implemented by both ServiceObj and ServiceObjLocal that allows code to be generic over thread-safety.