1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::client::QueryResponseFut;
8use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
9use fidl::endpoints::{ControlHandle as _, Responder as _};
10pub use fidl_fuchsia_sensors_realm_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct RealmFactoryCreateRealmRequest {
16 pub dictionary: fidl::endpoints::ServerEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
20 for RealmFactoryCreateRealmRequest
21{
22}
23
24#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
25pub struct RealmFactoryMarker;
26
27impl fidl::endpoints::ProtocolMarker for RealmFactoryMarker {
28 type Proxy = RealmFactoryProxy;
29 type RequestStream = RealmFactoryRequestStream;
30 #[cfg(target_os = "fuchsia")]
31 type SynchronousProxy = RealmFactorySynchronousProxy;
32
33 const DEBUG_NAME: &'static str = "fuchsia.sensors.realm.RealmFactory";
34}
35impl fidl::endpoints::DiscoverableProtocolMarker for RealmFactoryMarker {}
36pub type RealmFactoryCreateRealmResult = Result<(), fidl_fuchsia_testing_harness::OperationError>;
37
38pub trait RealmFactoryProxyInterface: Send + Sync {
39 type CreateRealmResponseFut: std::future::Future<Output = Result<RealmFactoryCreateRealmResult, fidl::Error>>
40 + Send;
41 fn r#create_realm(
42 &self,
43 dictionary: fidl::endpoints::ServerEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
44 ) -> Self::CreateRealmResponseFut;
45}
46#[derive(Debug)]
47#[cfg(target_os = "fuchsia")]
48pub struct RealmFactorySynchronousProxy {
49 client: fidl::client::sync::Client,
50}
51
52#[cfg(target_os = "fuchsia")]
53impl fidl::endpoints::SynchronousProxy for RealmFactorySynchronousProxy {
54 type Proxy = RealmFactoryProxy;
55 type Protocol = RealmFactoryMarker;
56
57 fn from_channel(inner: fidl::Channel) -> Self {
58 Self::new(inner)
59 }
60
61 fn into_channel(self) -> fidl::Channel {
62 self.client.into_channel()
63 }
64
65 fn as_channel(&self) -> &fidl::Channel {
66 self.client.as_channel()
67 }
68}
69
70#[cfg(target_os = "fuchsia")]
71impl RealmFactorySynchronousProxy {
72 pub fn new(channel: fidl::Channel) -> Self {
73 let protocol_name = <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
74 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
75 }
76
77 pub fn into_channel(self) -> fidl::Channel {
78 self.client.into_channel()
79 }
80
81 pub fn wait_for_event(
84 &self,
85 deadline: zx::MonotonicInstant,
86 ) -> Result<RealmFactoryEvent, fidl::Error> {
87 RealmFactoryEvent::decode(self.client.wait_for_event(deadline)?)
88 }
89
90 pub fn r#create_realm(
91 &self,
92 mut dictionary: fidl::endpoints::ServerEnd<
93 fidl_fuchsia_component_sandbox::DictionaryMarker,
94 >,
95 ___deadline: zx::MonotonicInstant,
96 ) -> Result<RealmFactoryCreateRealmResult, fidl::Error> {
97 let _response = self
98 .client
99 .send_query::<RealmFactoryCreateRealmRequest, fidl::encoding::FlexibleResultType<
100 fidl::encoding::EmptyStruct,
101 fidl_fuchsia_testing_harness::OperationError,
102 >>(
103 (dictionary,),
104 0x1102c6d49f306da5,
105 fidl::encoding::DynamicFlags::FLEXIBLE,
106 ___deadline,
107 )?
108 .into_result::<RealmFactoryMarker>("create_realm")?;
109 Ok(_response.map(|x| x))
110 }
111}
112
113#[cfg(target_os = "fuchsia")]
114impl From<RealmFactorySynchronousProxy> for zx::Handle {
115 fn from(value: RealmFactorySynchronousProxy) -> Self {
116 value.into_channel().into()
117 }
118}
119
120#[cfg(target_os = "fuchsia")]
121impl From<fidl::Channel> for RealmFactorySynchronousProxy {
122 fn from(value: fidl::Channel) -> Self {
123 Self::new(value)
124 }
125}
126
127#[derive(Debug, Clone)]
128pub struct RealmFactoryProxy {
129 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
130}
131
132impl fidl::endpoints::Proxy for RealmFactoryProxy {
133 type Protocol = RealmFactoryMarker;
134
135 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
136 Self::new(inner)
137 }
138
139 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
140 self.client.into_channel().map_err(|client| Self { client })
141 }
142
143 fn as_channel(&self) -> &::fidl::AsyncChannel {
144 self.client.as_channel()
145 }
146}
147
148impl RealmFactoryProxy {
149 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
151 let protocol_name = <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
152 Self { client: fidl::client::Client::new(channel, protocol_name) }
153 }
154
155 pub fn take_event_stream(&self) -> RealmFactoryEventStream {
161 RealmFactoryEventStream { event_receiver: self.client.take_event_receiver() }
162 }
163
164 pub fn r#create_realm(
165 &self,
166 mut dictionary: fidl::endpoints::ServerEnd<
167 fidl_fuchsia_component_sandbox::DictionaryMarker,
168 >,
169 ) -> fidl::client::QueryResponseFut<
170 RealmFactoryCreateRealmResult,
171 fidl::encoding::DefaultFuchsiaResourceDialect,
172 > {
173 RealmFactoryProxyInterface::r#create_realm(self, dictionary)
174 }
175}
176
177impl RealmFactoryProxyInterface for RealmFactoryProxy {
178 type CreateRealmResponseFut = fidl::client::QueryResponseFut<
179 RealmFactoryCreateRealmResult,
180 fidl::encoding::DefaultFuchsiaResourceDialect,
181 >;
182 fn r#create_realm(
183 &self,
184 mut dictionary: fidl::endpoints::ServerEnd<
185 fidl_fuchsia_component_sandbox::DictionaryMarker,
186 >,
187 ) -> Self::CreateRealmResponseFut {
188 fn _decode(
189 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
190 ) -> Result<RealmFactoryCreateRealmResult, fidl::Error> {
191 let _response = fidl::client::decode_transaction_body::<
192 fidl::encoding::FlexibleResultType<
193 fidl::encoding::EmptyStruct,
194 fidl_fuchsia_testing_harness::OperationError,
195 >,
196 fidl::encoding::DefaultFuchsiaResourceDialect,
197 0x1102c6d49f306da5,
198 >(_buf?)?
199 .into_result::<RealmFactoryMarker>("create_realm")?;
200 Ok(_response.map(|x| x))
201 }
202 self.client
203 .send_query_and_decode::<RealmFactoryCreateRealmRequest, RealmFactoryCreateRealmResult>(
204 (dictionary,),
205 0x1102c6d49f306da5,
206 fidl::encoding::DynamicFlags::FLEXIBLE,
207 _decode,
208 )
209 }
210}
211
212pub struct RealmFactoryEventStream {
213 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
214}
215
216impl std::marker::Unpin for RealmFactoryEventStream {}
217
218impl futures::stream::FusedStream for RealmFactoryEventStream {
219 fn is_terminated(&self) -> bool {
220 self.event_receiver.is_terminated()
221 }
222}
223
224impl futures::Stream for RealmFactoryEventStream {
225 type Item = Result<RealmFactoryEvent, fidl::Error>;
226
227 fn poll_next(
228 mut self: std::pin::Pin<&mut Self>,
229 cx: &mut std::task::Context<'_>,
230 ) -> std::task::Poll<Option<Self::Item>> {
231 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
232 &mut self.event_receiver,
233 cx
234 )?) {
235 Some(buf) => std::task::Poll::Ready(Some(RealmFactoryEvent::decode(buf))),
236 None => std::task::Poll::Ready(None),
237 }
238 }
239}
240
241#[derive(Debug)]
242pub enum RealmFactoryEvent {
243 #[non_exhaustive]
244 _UnknownEvent {
245 ordinal: u64,
247 },
248}
249
250impl RealmFactoryEvent {
251 fn decode(
253 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
254 ) -> Result<RealmFactoryEvent, fidl::Error> {
255 let (bytes, _handles) = buf.split_mut();
256 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
257 debug_assert_eq!(tx_header.tx_id, 0);
258 match tx_header.ordinal {
259 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
260 Ok(RealmFactoryEvent::_UnknownEvent { ordinal: tx_header.ordinal })
261 }
262 _ => Err(fidl::Error::UnknownOrdinal {
263 ordinal: tx_header.ordinal,
264 protocol_name: <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
265 }),
266 }
267 }
268}
269
270pub struct RealmFactoryRequestStream {
272 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
273 is_terminated: bool,
274}
275
276impl std::marker::Unpin for RealmFactoryRequestStream {}
277
278impl futures::stream::FusedStream for RealmFactoryRequestStream {
279 fn is_terminated(&self) -> bool {
280 self.is_terminated
281 }
282}
283
284impl fidl::endpoints::RequestStream for RealmFactoryRequestStream {
285 type Protocol = RealmFactoryMarker;
286 type ControlHandle = RealmFactoryControlHandle;
287
288 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
289 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
290 }
291
292 fn control_handle(&self) -> Self::ControlHandle {
293 RealmFactoryControlHandle { inner: self.inner.clone() }
294 }
295
296 fn into_inner(
297 self,
298 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
299 {
300 (self.inner, self.is_terminated)
301 }
302
303 fn from_inner(
304 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
305 is_terminated: bool,
306 ) -> Self {
307 Self { inner, is_terminated }
308 }
309}
310
311impl futures::Stream for RealmFactoryRequestStream {
312 type Item = Result<RealmFactoryRequest, fidl::Error>;
313
314 fn poll_next(
315 mut self: std::pin::Pin<&mut Self>,
316 cx: &mut std::task::Context<'_>,
317 ) -> std::task::Poll<Option<Self::Item>> {
318 let this = &mut *self;
319 if this.inner.check_shutdown(cx) {
320 this.is_terminated = true;
321 return std::task::Poll::Ready(None);
322 }
323 if this.is_terminated {
324 panic!("polled RealmFactoryRequestStream after completion");
325 }
326 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
327 |bytes, handles| {
328 match this.inner.channel().read_etc(cx, bytes, handles) {
329 std::task::Poll::Ready(Ok(())) => {}
330 std::task::Poll::Pending => return std::task::Poll::Pending,
331 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
332 this.is_terminated = true;
333 return std::task::Poll::Ready(None);
334 }
335 std::task::Poll::Ready(Err(e)) => {
336 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
337 e.into(),
338 ))))
339 }
340 }
341
342 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
344
345 std::task::Poll::Ready(Some(match header.ordinal {
346 0x1102c6d49f306da5 => {
347 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
348 let mut req = fidl::new_empty!(
349 RealmFactoryCreateRealmRequest,
350 fidl::encoding::DefaultFuchsiaResourceDialect
351 );
352 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RealmFactoryCreateRealmRequest>(&header, _body_bytes, handles, &mut req)?;
353 let control_handle =
354 RealmFactoryControlHandle { inner: this.inner.clone() };
355 Ok(RealmFactoryRequest::CreateRealm {
356 dictionary: req.dictionary,
357
358 responder: RealmFactoryCreateRealmResponder {
359 control_handle: std::mem::ManuallyDrop::new(control_handle),
360 tx_id: header.tx_id,
361 },
362 })
363 }
364 _ if header.tx_id == 0
365 && header
366 .dynamic_flags()
367 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
368 {
369 Ok(RealmFactoryRequest::_UnknownMethod {
370 ordinal: header.ordinal,
371 control_handle: RealmFactoryControlHandle { inner: this.inner.clone() },
372 method_type: fidl::MethodType::OneWay,
373 })
374 }
375 _ if header
376 .dynamic_flags()
377 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
378 {
379 this.inner.send_framework_err(
380 fidl::encoding::FrameworkErr::UnknownMethod,
381 header.tx_id,
382 header.ordinal,
383 header.dynamic_flags(),
384 (bytes, handles),
385 )?;
386 Ok(RealmFactoryRequest::_UnknownMethod {
387 ordinal: header.ordinal,
388 control_handle: RealmFactoryControlHandle { inner: this.inner.clone() },
389 method_type: fidl::MethodType::TwoWay,
390 })
391 }
392 _ => Err(fidl::Error::UnknownOrdinal {
393 ordinal: header.ordinal,
394 protocol_name:
395 <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
396 }),
397 }))
398 },
399 )
400 }
401}
402
403#[derive(Debug)]
404pub enum RealmFactoryRequest {
405 CreateRealm {
406 dictionary: fidl::endpoints::ServerEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
407 responder: RealmFactoryCreateRealmResponder,
408 },
409 #[non_exhaustive]
411 _UnknownMethod {
412 ordinal: u64,
414 control_handle: RealmFactoryControlHandle,
415 method_type: fidl::MethodType,
416 },
417}
418
419impl RealmFactoryRequest {
420 #[allow(irrefutable_let_patterns)]
421 pub fn into_create_realm(
422 self,
423 ) -> Option<(
424 fidl::endpoints::ServerEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
425 RealmFactoryCreateRealmResponder,
426 )> {
427 if let RealmFactoryRequest::CreateRealm { dictionary, responder } = self {
428 Some((dictionary, responder))
429 } else {
430 None
431 }
432 }
433
434 pub fn method_name(&self) -> &'static str {
436 match *self {
437 RealmFactoryRequest::CreateRealm { .. } => "create_realm",
438 RealmFactoryRequest::_UnknownMethod {
439 method_type: fidl::MethodType::OneWay, ..
440 } => "unknown one-way method",
441 RealmFactoryRequest::_UnknownMethod {
442 method_type: fidl::MethodType::TwoWay, ..
443 } => "unknown two-way method",
444 }
445 }
446}
447
448#[derive(Debug, Clone)]
449pub struct RealmFactoryControlHandle {
450 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
451}
452
453impl fidl::endpoints::ControlHandle for RealmFactoryControlHandle {
454 fn shutdown(&self) {
455 self.inner.shutdown()
456 }
457 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
458 self.inner.shutdown_with_epitaph(status)
459 }
460
461 fn is_closed(&self) -> bool {
462 self.inner.channel().is_closed()
463 }
464 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
465 self.inner.channel().on_closed()
466 }
467
468 #[cfg(target_os = "fuchsia")]
469 fn signal_peer(
470 &self,
471 clear_mask: zx::Signals,
472 set_mask: zx::Signals,
473 ) -> Result<(), zx_status::Status> {
474 use fidl::Peered;
475 self.inner.channel().signal_peer(clear_mask, set_mask)
476 }
477}
478
479impl RealmFactoryControlHandle {}
480
481#[must_use = "FIDL methods require a response to be sent"]
482#[derive(Debug)]
483pub struct RealmFactoryCreateRealmResponder {
484 control_handle: std::mem::ManuallyDrop<RealmFactoryControlHandle>,
485 tx_id: u32,
486}
487
488impl std::ops::Drop for RealmFactoryCreateRealmResponder {
492 fn drop(&mut self) {
493 self.control_handle.shutdown();
494 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
496 }
497}
498
499impl fidl::endpoints::Responder for RealmFactoryCreateRealmResponder {
500 type ControlHandle = RealmFactoryControlHandle;
501
502 fn control_handle(&self) -> &RealmFactoryControlHandle {
503 &self.control_handle
504 }
505
506 fn drop_without_shutdown(mut self) {
507 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
509 std::mem::forget(self);
511 }
512}
513
514impl RealmFactoryCreateRealmResponder {
515 pub fn send(
519 self,
520 mut result: Result<(), fidl_fuchsia_testing_harness::OperationError>,
521 ) -> Result<(), fidl::Error> {
522 let _result = self.send_raw(result);
523 if _result.is_err() {
524 self.control_handle.shutdown();
525 }
526 self.drop_without_shutdown();
527 _result
528 }
529
530 pub fn send_no_shutdown_on_err(
532 self,
533 mut result: Result<(), fidl_fuchsia_testing_harness::OperationError>,
534 ) -> Result<(), fidl::Error> {
535 let _result = self.send_raw(result);
536 self.drop_without_shutdown();
537 _result
538 }
539
540 fn send_raw(
541 &self,
542 mut result: Result<(), fidl_fuchsia_testing_harness::OperationError>,
543 ) -> Result<(), fidl::Error> {
544 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
545 fidl::encoding::EmptyStruct,
546 fidl_fuchsia_testing_harness::OperationError,
547 >>(
548 fidl::encoding::FlexibleResult::new(result),
549 self.tx_id,
550 0x1102c6d49f306da5,
551 fidl::encoding::DynamicFlags::FLEXIBLE,
552 )
553 }
554}
555
556mod internal {
557 use super::*;
558
559 impl fidl::encoding::ResourceTypeMarker for RealmFactoryCreateRealmRequest {
560 type Borrowed<'a> = &'a mut Self;
561 fn take_or_borrow<'a>(
562 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
563 ) -> Self::Borrowed<'a> {
564 value
565 }
566 }
567
568 unsafe impl fidl::encoding::TypeMarker for RealmFactoryCreateRealmRequest {
569 type Owned = Self;
570
571 #[inline(always)]
572 fn inline_align(_context: fidl::encoding::Context) -> usize {
573 4
574 }
575
576 #[inline(always)]
577 fn inline_size(_context: fidl::encoding::Context) -> usize {
578 4
579 }
580 }
581
582 unsafe impl
583 fidl::encoding::Encode<
584 RealmFactoryCreateRealmRequest,
585 fidl::encoding::DefaultFuchsiaResourceDialect,
586 > for &mut RealmFactoryCreateRealmRequest
587 {
588 #[inline]
589 unsafe fn encode(
590 self,
591 encoder: &mut fidl::encoding::Encoder<
592 '_,
593 fidl::encoding::DefaultFuchsiaResourceDialect,
594 >,
595 offset: usize,
596 _depth: fidl::encoding::Depth,
597 ) -> fidl::Result<()> {
598 encoder.debug_check_bounds::<RealmFactoryCreateRealmRequest>(offset);
599 fidl::encoding::Encode::<
601 RealmFactoryCreateRealmRequest,
602 fidl::encoding::DefaultFuchsiaResourceDialect,
603 >::encode(
604 (<fidl::encoding::Endpoint<
605 fidl::endpoints::ServerEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
606 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
607 &mut self.dictionary
608 ),),
609 encoder,
610 offset,
611 _depth,
612 )
613 }
614 }
615 unsafe impl<
616 T0: fidl::encoding::Encode<
617 fidl::encoding::Endpoint<
618 fidl::endpoints::ServerEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
619 >,
620 fidl::encoding::DefaultFuchsiaResourceDialect,
621 >,
622 >
623 fidl::encoding::Encode<
624 RealmFactoryCreateRealmRequest,
625 fidl::encoding::DefaultFuchsiaResourceDialect,
626 > for (T0,)
627 {
628 #[inline]
629 unsafe fn encode(
630 self,
631 encoder: &mut fidl::encoding::Encoder<
632 '_,
633 fidl::encoding::DefaultFuchsiaResourceDialect,
634 >,
635 offset: usize,
636 depth: fidl::encoding::Depth,
637 ) -> fidl::Result<()> {
638 encoder.debug_check_bounds::<RealmFactoryCreateRealmRequest>(offset);
639 self.0.encode(encoder, offset + 0, depth)?;
643 Ok(())
644 }
645 }
646
647 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
648 for RealmFactoryCreateRealmRequest
649 {
650 #[inline(always)]
651 fn new_empty() -> Self {
652 Self {
653 dictionary: fidl::new_empty!(
654 fidl::encoding::Endpoint<
655 fidl::endpoints::ServerEnd<
656 fidl_fuchsia_component_sandbox::DictionaryMarker,
657 >,
658 >,
659 fidl::encoding::DefaultFuchsiaResourceDialect
660 ),
661 }
662 }
663
664 #[inline]
665 unsafe fn decode(
666 &mut self,
667 decoder: &mut fidl::encoding::Decoder<
668 '_,
669 fidl::encoding::DefaultFuchsiaResourceDialect,
670 >,
671 offset: usize,
672 _depth: fidl::encoding::Depth,
673 ) -> fidl::Result<()> {
674 decoder.debug_check_bounds::<Self>(offset);
675 fidl::decode!(
677 fidl::encoding::Endpoint<
678 fidl::endpoints::ServerEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
679 >,
680 fidl::encoding::DefaultFuchsiaResourceDialect,
681 &mut self.dictionary,
682 decoder,
683 offset + 0,
684 _depth
685 )?;
686 Ok(())
687 }
688 }
689}