sl4f_lib/webdriver/
types.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 serde::Serialize;
6
7/// Result returned by `EnableDevTools` API
8#[derive(Serialize)]
9pub enum EnableDevToolsResult {
10    Success,
11}
12
13/// Result returned by `GetDevtoolsPorts` API.
14#[derive(Serialize)]
15pub struct GetDevToolsPortsResult {
16    /// List of open DevTools ports.
17    ports: Vec<u16>,
18}
19
20impl GetDevToolsPortsResult {
21    /// Create a new `GetDevtoolsPortsResult` with the provided list of ports.
22    pub fn new(ports: Vec<u16>) -> GetDevToolsPortsResult {
23        GetDevToolsPortsResult { ports }
24    }
25}