Skip to content

Instantly share code, notes, and snippets.

@zakorgy
Created February 4, 2016 10:52
Show Gist options
  • Save zakorgy/e4d235b198cbc6182c7f to your computer and use it in GitHub Desktop.
Save zakorgy/e4d235b198cbc6182c7f to your computer and use it in GitHub Desktop.
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use dom::bindings::global::GlobalRef;
use dom::bindings::reflector::Reflector;
use util::str::DOMString;
use dom::bindings::codegen::UnionTypes::StringOrUnsignedLong;
// https://webbluetoothcg.github.io/web-bluetooth/#bluetoothuuid
#[dom_struct]
pub struct BluetoothUUID {
reflector_: Reflector,
}
impl BluetoothUUID {
pub fn CanonicalUUID(_: GlobalRef, _alias: u32) -> DOMString {
DOMString::new()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment