rive_rs/status_code.rs
1// Copyright 2021 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#[derive(Clone, Copy, Debug, Eq, PartialEq)]
6pub enum StatusCode {
7 Ok,
8 MissingObject,
9 InvalidObject,
10 FailedInversion,
11}