Expand description
FIDL encoding and decoding.
Macros§
- const_
assert_ eq - Asserts that constants are equal in value.
Structs§
- Ambiguous1
- A fake FIDL type that can encode from and decode into any Rust type.
- Ambiguous2
- Like
Ambiguous1
. There needs to be two of these types so that the compiler doesn’t infer one of them and generate a call to the panicking methods. - Array
- The FIDL type
array<T, N>
. - AtRest
Flags - Bitflags type for transaction header at-rest flags.
- Bounded
String - The FIDL type
string:N
. - Boxed
- The FIDL type
box<T>
. - Context
- Context for encoding and decoding.
- Decoder
- Decoding state
- Default
Fuchsia Resource Dialect - The default
ResourceDialect
. Encodes everything into a channel MessageBuf for sending via channels between Fuchsia services. - Dynamic
Flags - Bitflags type to flags that aid in dynamically identifying features of the request.
- Empty
Payload - A FIDL type representing an empty payload (0 bytes).
- Empty
Struct - The FIDL type used for an empty success variant in a result union. Result unions occur in two-way methods that are flexible or that use error syntax.
- Encoder
- Encoding state
- Epitaph
Body - The body of a FIDL Epitaph
- Flexible
Result Type - The FIDL union generated for flexible two-way methods with errors.
- Flexible
Type - The FIDL union generated for flexible two-way methods without errors.
- Fuchsia
Proxy Box - Box around an async channel. Needed to implement
ResourceDialect
forDefaultFuchsiaResourceDialect
but not so useful for that case. - Generic
Message - A struct which encodes as
GenericMessageType<H, T>
whereE: Encode<T>
. - Generic
Message Type - The FIDL type for a message consisting of a header
H
and bodyT
. - Handle
Type - The FIDL type
zx.Handle:<OBJECT_TYPE, RIGHTS>
, or aclient_end
orserver_end
. - Optional
- The FIDL type
T:optional
whereT
is a vector, string, handle, or client/server end. - Optional
Union - The FIDL type
T:optional
whereT
is a union. - Result
Type - The FIDL union generated for strict two-way methods with errors.
- TlsBuf
- Thread-local buffer for encoding and decoding FIDL transactions. Needed to
implement
ResourceDialect
. - Transaction
Header - Header for transactional FIDL messages
- Vector
- The FIDL type
vector<T>:N
.
Enums§
- Ambiguous
Never - An uninhabited type used as owned and borrowed type for ambiguous markers.
Can be replaced by
!
once that is stable. - Framework
Err - Internal FIDL framework error type used to identify unknown methods.
- Generic
Message Owned - The owned type for
GenericMessageType
. - Wire
Format Version - Wire format version to use during encode / decode.
Constants§
- ALLOC_
ABSENT_ U32 - Indicates that an optional value is absent.
- ALLOC_
ABSENT_ U64 - Indicates that an optional value is absent.
- ALLOC_
PRESENT_ U32 - Indicates that an optional value is present.
- ALLOC_
PRESENT_ U64 - Indicates that an optional value is present.
- EPITAPH_
ORDINAL - Special ordinal signifying an epitaph message.
- MAGIC_
NUMBER_ INITIAL - The current wire format magic number
- MAX_
BOUND - The maximum vector bound, corresponding to the
MAX
constraint in FIDL. - MAX_
HANDLES - The maximum number of handles allowed in a FIDL message.
- MAX_
RECURSION - The maximum recursion depth of encoding and decoding. Each pointer to an out-of-line object counts as one step in the recursion depth.
Traits§
- Decode
- A Rust type that can be decoded from the FIDL type
T
. - Encodable
AsHandle - Indicates a type is encodable as a handle in a given resource dialect.
- Encode
- A Rust type that can be encoded as the FIDL type
T
. - Handle
Disposition For - Handle disposition struct used for a particular dialect.
- Handle
For - Handle type used for a particular dialect.
- Handle
Info For - Handle info struct used for a particular dialect.
- Message
BufFor - Message buffer used to hold a message in a particular dialect.
- Proxy
Channel Box - Trait for a “Box” that wraps a handle when it’s inside a client. Useful when we need some infrastructure to make our underlying channels work the way the client code expects.
- Proxy
Channel For - Channel used for proxies in a particular dialect.
- Resource
Dialect - Describes how a given transport encodes resources like handles.
- Resource
Type Marker - A FIDL resource type marker.
- Type
Marker - A FIDL type marker.
- Value
Type Marker - A FIDL value type marker.
Functions§
- decode_
transaction_ header - Decodes the transaction header from a message. Returns the header and a reference to the tail of the message.
- with_
tls_ decode_ buf - Acquire a mutable reference to the thread-local buffers used for decoding.
- with_
tls_ encode_ buf - Acquire a mutable reference to the thread-local buffers used for encoding.
- with_
tls_ encoded - Encodes the provided type into the thread-local encoding buffers.
Type Aliases§
- Endpoint
- An abbreviation of
HandleType
that for channels with default rights, used for the FIDL typesclient_end:P
andserver_end:P
. - NoHandle
Resource Dialect - A resource dialect which doesn’t support handles at all.
- Transaction
Message - A struct which encodes as
TransactionMessageType<T>
whereE: Encode<T>
. - Transaction
Message Type - The FIDL type for a transaction message with body
T
. - Unbounded
String - The FIDL type
string
orstring:MAX
. - Unbounded
Vector - The FIDL type
vector<T>
orvector<T>:MAX
.