blob: 8caf6f75783ee3714a82152da68d04b7ddac8a75 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library benchmarkfidl;
type ByteVector = struct {
bytes vector<uint8>;
};
protocol ByteVectorEventProtocol {
-> Send(struct {
val ByteVector;
});
};
protocol ByteVectorEchoCall {
Echo(struct {
val ByteVector;
}) -> (struct {
val ByteVector;
});
};