File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -515,6 +515,7 @@ impl Into<Vec<u8>> for AsciiString {
515
515
}
516
516
}
517
517
518
+ #[ allow( clippy:: from_over_into) ]
518
519
impl Into < Vec < AsciiChar > > for AsciiString {
519
520
fn into ( self ) -> Vec < AsciiChar > {
520
521
self . vec
@@ -561,6 +562,7 @@ impl From<AsciiString> for Box<AsciiStr> {
561
562
}
562
563
}
563
564
565
+ #[ allow( clippy:: from_over_into) ]
564
566
impl Into < Rc < AsciiStr > > for AsciiString {
565
567
fn into ( self ) -> Rc < AsciiStr > {
566
568
let var: Rc < [ AsciiChar ] > = self . vec . into ( ) ;
@@ -569,6 +571,7 @@ impl Into<Rc<AsciiStr>> for AsciiString {
569
571
}
570
572
}
571
573
574
+ #[ allow( clippy:: from_over_into) ]
572
575
impl Into < Arc < AsciiStr > > for AsciiString {
573
576
fn into ( self ) -> Arc < AsciiStr > {
574
577
let var: Arc < [ AsciiChar ] > = self . vec . into ( ) ;
You can’t perform that action at this time.
0 commit comments