openthread/ot/types/resolver.rs
1// Copyright 2024 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
5use crate::prelude_internal::*;
6
7/// This structure represents the DNS Upstream Query context.
8///
9/// Functional equivalent of [`otsys::otPlatDnsUpstreamQuery`](crate::otsys::otPlatDnsUpstreamQuery).
10#[derive(Debug, Clone)]
11#[repr(transparent)]
12pub struct PlatDnsUpstreamQuery(otPlatDnsUpstreamQuery);
13
14impl_ot_castable!(opaque PlatDnsUpstreamQuery, otPlatDnsUpstreamQuery);