1// Copyright 2023 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
45//! This belongs in the //src/lib/fidl/rust/fidl_message crate, but has to go
6//! here to work around the "upstream crates may add a new impl of trait" error
7//! https://doc.rust-lang.org/error_codes/E0119.html.
89use crate::encoding::{
10 Decode, EmptyPayload, EmptyStruct, Encode, NoHandleResourceDialect, ValueTypeMarker,
11};
12use crate::persistence::Persistable;
1314/// Implementation of fidl_message::Body.
15pub trait Body:
16 Decode<Self::MarkerAtTopLevel, NoHandleResourceDialect>
17 + Decode<Self::MarkerInResultUnion, NoHandleResourceDialect>
18{
19/// The marker type to use when the body is at the top-level.
20type MarkerAtTopLevel: ValueTypeMarker<Owned = Self>
21 + ValueTypeMarker<Owned: Decode<Self::MarkerAtTopLevel, NoHandleResourceDialect>>
22 + for<'a> ValueTypeMarker<
23 Borrowed<'a>: Encode<Self::MarkerAtTopLevel, NoHandleResourceDialect>,
24 >;
2526/// The marker type to use when the body is nested in a result union.
27type MarkerInResultUnion: ValueTypeMarker<Owned = Self>
28 + ValueTypeMarker<Owned: Decode<Self::MarkerInResultUnion, NoHandleResourceDialect>>
29 + for<'a> ValueTypeMarker<
30 Borrowed<'a>: Encode<Self::MarkerInResultUnion, NoHandleResourceDialect>,
31 >;
32}
3334/// Implementation of fidl_message::ErrorType.
35pub trait ErrorType: Decode<Self::Marker, NoHandleResourceDialect> {
36/// The marker type.
37type Marker: ValueTypeMarker<Owned = Self>;
38}
3940impl<T: Persistable> Body for T {
41type MarkerAtTopLevel = Self;
42type MarkerInResultUnion = Self;
43}
4445impl Body for () {
46type MarkerAtTopLevel = EmptyPayload;
47type MarkerInResultUnion = EmptyStruct;
48}
4950impl<E: ValueTypeMarker<Owned = E> + Decode<E, NoHandleResourceDialect>> ErrorType for E {
51type Marker = Self;
52}