fix(src/types/traits/convert_trait): Remove unneeded imports

This commit is contained in:
Benedikt Peetz 2024-05-20 15:38:14 +02:00
parent afd8169e67
commit 5253e59be1
Signed by: bpeetz
GPG Key ID: B6139BCB07CE946D
1 changed files with 0 additions and 5 deletions

View File

@ -23,14 +23,9 @@
use crate::types::error::{self, TypeConversionError};
use log::warn;
use std::{
error::Error,
ffi::{c_char, CString},
mem::ManuallyDrop,
ptr,
};
use super::errno;
/// Convert a value into a data structure that we can send directly to c.
pub trait Convertible
where