Adjust the format of imports in Asterinas

This commit is contained in:
Chen Chengjun
2024-02-25 22:09:24 +08:00
committed by Tate, Hongliang Tian
parent 92e488e727
commit cfcef6965a
384 changed files with 2264 additions and 2059 deletions

View File

@ -109,13 +109,15 @@
extern crate alloc;
use alloc::sync::{Arc, Weak};
use core::borrow::Borrow;
use core::cmp::Ordering;
use core::convert::AsRef;
use core::fmt;
use core::hash::{Hash, Hasher};
use core::marker::Unsize;
use core::ops::{CoerceUnsized, Deref};
use core::{
borrow::Borrow,
cmp::Ordering,
convert::AsRef,
fmt,
hash::{Hash, Hasher},
marker::Unsize,
ops::{CoerceUnsized, Deref},
};
/// Same as the standard `Arc`, except that it can be used as the key type of a hash table.
#[repr(transparent)]