Skip to content

Commit

Permalink
fix: Change more visibility modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
DashieTM committed Nov 8, 2023
1 parent 23f4440 commit d14daae
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ReSet-Lib"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
description = "Data structure library for ReSet"
repository = "https://github.com/Xetibo/ReSet-Lib"
Expand Down
18 changes: 9 additions & 9 deletions src/bluetooth/bluetooth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ use dbus::{

#[derive(Debug, Clone)]
pub struct BluetoothDevice {
path: Path<'static>,
rssi: i16,
name: String,
adapter: Path<'static>,
trusted: bool,
bonded: bool,
paired: bool,
blocked: bool,
address: String,
pub path: Path<'static>,
pub rssi: i16,
pub name: String,
pub adapter: Path<'static>,
pub trusted: bool,
pub bonded: bool,
pub paired: bool,
pub blocked: bool,
pub address: String,
}

unsafe impl Send for BluetoothDevice {}
Expand Down

0 comments on commit d14daae

Please sign in to comment.