blob: ffd22e6d57899ddf0b0d3cacc98715602ac28270 [file] [log] [blame]
// Copyright 2021 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.
#![allow(dead_code)]
use fidl_fidl_test_unionstrictflexible as fidl_lib;
// [START contents]
fn use_union(value: &fidl_lib::JsonValue) {
match value {
fidl_lib::JsonValue::IntValue(n) => println!("int value: {}", n),
fidl_lib::JsonValue::StringValue(s) => println!("string: {}", s),
fidl_lib::JsonValueUnknown!() => println!("<unknown union>"),
};
}
// [END contents]
fn main() {}