sl4f_lib/scenic/commands.rs
1// Copyright 2019 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::scenic::facade::ScenicFacade;
6use crate::scenic::types::ScenicMethod;
7use crate::server::Facade;
8use anyhow::Error;
9use async_trait::async_trait;
10use serde_json::Value;
11
12#[async_trait(?Send)]
13impl Facade for ScenicFacade {
14 async fn handle_request(&self, method: String, _args: Value) -> Result<Value, Error> {
15 match method.parse()? {
16 ScenicMethod::TakeScreenshot => self.take_screenshot().await,
17 }
18 }
19}