fidl_next_protocol/framework_error.rs
1// Copyright 2026 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.
4
5/// An internal framework error.
6#[derive(Clone, Copy, Debug, PartialEq, Eq)]
7#[repr(i32)]
8pub enum FrameworkError {
9 /// The protocol method was not recognized by the receiver.
10 UnknownMethod = -2,
11}