Skip to main content

fidl_next_protocol/
flexibility.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/// The flexibility of a method.
6#[derive(Clone, Copy, Debug)]
7pub enum Flexibility {
8    /// The method is strict.
9    Strict,
10    /// The method is flexible.
11    Flexible,
12}