Skip to content

Commit 14b5dfc

Browse files
committed
glib: cleanup GString imports
1 parent aad2210 commit 14b5dfc

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

glib/src/gstring.rs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
// Take a look at the license at the top of the repository in the LICENSE file.
22

3-
use crate::translate::*;
4-
use crate::types::{StaticType, Type};
5-
use crate::value::{FromValue, ToValue};
6-
use crate::Value;
7-
use std::borrow::{Borrow, Cow};
8-
use std::cmp::Ordering;
9-
use std::ffi::{CStr, CString, OsStr, OsString};
10-
use std::fmt;
11-
use std::hash;
12-
use std::mem;
13-
use std::ops::Deref;
14-
use std::os::raw::{c_char, c_void};
15-
use std::path::{Path, PathBuf};
16-
use std::ptr;
17-
use std::slice;
18-
use std::string::String;
3+
use crate::{
4+
translate::*,
5+
types::{StaticType, Type},
6+
value::{FromValue, ToValue},
7+
Value,
8+
};
9+
use std::{
10+
borrow::{Borrow, Cow},
11+
cmp::Ordering,
12+
ffi::{CStr, CString, OsStr, OsString},
13+
fmt, hash, mem,
14+
ops::Deref,
15+
os::raw::{c_char, c_void},
16+
path::{Path, PathBuf},
17+
ptr, slice,
18+
};
1919

2020
// rustdoc-stripper-ignore-next
2121
/// Representaion of a borrowed [`GString`].

0 commit comments

Comments
 (0)