Skip to content

Commit 6fc24ec

Browse files
committed
fix: allow clippy type_complexity for dof9 & dof9_fixex
Signed-off-by: Lachezar Lechev <lachezar@lechev.space>
1 parent 97ecac6 commit 6fc24ec

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,7 @@ where
562562
}
563563

564564
/// Returns Acceleration, Gyroscope and Magnetometer vectors in this order.
565+
#[allow(clippy::type_complexity)]
565566
pub async fn dof9_fixed(
566567
&mut self,
567568
) -> Result<(mint::Vector3<i16>, mint::Vector3<i16>, mint::Vector3<i16>), Error<E>> {
@@ -594,6 +595,7 @@ where
594595
}
595596

596597
/// Returns Acceleration, Gyroscope and Magnetometer vectors in this order.
598+
#[allow(clippy::type_complexity)]
597599
pub async fn dof9(
598600
&mut self,
599601
) -> Result<(mint::Vector3<f32>, mint::Vector3<f32>, mint::Vector3<f32>), Error<E>> {

0 commit comments

Comments
 (0)