Skip to content

Commit 8f09911

Browse files
committed
wip
1 parent a06223e commit 8f09911

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/strview.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ use std::{ops::Deref, sync::Arc};
1818
#[derive(Default, Clone, PartialEq, Eq, PartialOrd, Ord)]
1919
pub struct StrView(ByteView);
2020

21-
#[allow(clippy::non_send_fields_in_send_ty)]
22-
unsafe impl Send for StrView {}
23-
#[allow(clippy::non_send_fields_in_send_ty)]
24-
unsafe impl Sync for StrView {}
25-
2621
impl std::fmt::Display for StrView {
2722
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2823
write!(f, "{}", &**self)

0 commit comments

Comments
 (0)