openthread/ot/types/
dnssd_counters.rs1use crate::prelude_internal::*;
6
7#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct DnssdCounters(pub otDnssdCounters);
13
14impl_ot_castable!(DnssdCounters, otDnssdCounters);
15
16impl DnssdCounters {
17 pub fn success_response(&self) -> u32 {
19 self.0.mSuccessResponse
20 }
21
22 pub fn server_failure_response(&self) -> u32 {
24 self.0.mServerFailureResponse
25 }
26
27 pub fn format_error_response(&self) -> u32 {
29 self.0.mFormatErrorResponse
30 }
31
32 pub fn name_error_response(&self) -> u32 {
34 self.0.mNameErrorResponse
35 }
36
37 pub fn not_implemented_response(&self) -> u32 {
39 self.0.mNotImplementedResponse
40 }
41
42 pub fn other_response(&self) -> u32 {
44 self.0.mOtherResponse
45 }
46
47 pub fn resolved_by_srp(&self) -> u32 {
49 self.0.mResolvedBySrp
50 }
51
52 pub fn upstream_dns_counters(&self) -> UpstreamDnsCounters {
54 self.0.mUpstreamDnsCounters.into()
55 }
56}
57
58#[derive(Debug, Default, Clone)]
59#[repr(transparent)]
60pub struct UpstreamDnsCounters(pub otUpstreamDnsCounters);
64
65impl_ot_castable!(UpstreamDnsCounters, otUpstreamDnsCounters);
66
67impl UpstreamDnsCounters {
68 pub fn queries(&self) -> u32 {
70 self.0.mQueries
71 }
72
73 pub fn responses(&self) -> u32 {
75 self.0.mResponses
76 }
77
78 pub fn failures(&self) -> u32 {
80 self.0.mFailures
81 }
82}