Expand description
Tools for providing Fuchsia services.
Structs§
- Fidl
Service - A wrapper for functions from
RequestStream
toOutput
which implementsService
. - Fidl
Service Member - A wrapper for functions from
ServiceRequest
toOutput
which implementsService
. - Fidl
Service Server Connector - A wrapper for functions from
ServerEnd
toOutput
which implementsService
. - Missing
Startup Handle - An error indicating the startup handle on which the FIDL server attempted to start was missing.
- Protocol
Connector ProtocolConnector
allows connecting to capabilities exposed by ServiceFs- Service
Fs - A filesystem which connects clients to services.
- Service
FsDir - A directory within a
ServiceFs
. - Service
Obj - A thread-safe (
Send
) trait object encapsulating aService
with the givenOutput
type. - Service
ObjLocal - A
!Send
(non-thread-safe) trait object encapsulating aService
with the givenOutput
type. - Stallable
Service Fs - A wrapper around the base
ServiceFs
that streams out capability connection requests. Additionally, it will yieldItem::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.- Service
ObjTrait - A trait implemented by both
ServiceObj
andServiceObjLocal
that allows code to be generic over thread-safety.