blob: 4ecd8d1f8485ac23206f0e2f70f2ffb2c6358bfd [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.
use crate::agent::base::{Invocation, InvocationResult};
use crate::anonymous_message_hub_definition;
#[derive(Clone, Debug)]
pub enum Payload {
Invocation(Invocation),
Complete(InvocationResult),
}
anonymous_message_hub_definition!(Payload);