wlan_common/ie/rsn/suite_selector.rs
1// Copyright 2018 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::organization::Oui;
6
7pub const OUI: Oui = Oui::DOT11;
8
9pub trait Factory {
10 type Suite;
11
12 fn new(oui: Oui, suite_type: u8) -> Self::Suite;
13}