vm/function/{byteslike -> buffer}.rs

those types are buffer utilities
byteslike is one of them
This commit is contained in:
Jeong YunWon
2021-10-07 21:37:24 +09:00
parent 6ba322f261
commit 04e25e8d2d
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
mod argument;
mod byteslike;
mod buffer;
mod number;
use crate::{
@@ -14,7 +14,7 @@ use std::marker::PhantomData;
use std::ops::RangeInclusive;
pub use argument::{ArgCallable, ArgIterable};
pub use byteslike::{ArgBytesLike, ArgMemoryBuffer, ArgStrOrBytesLike};
pub use buffer::{ArgBytesLike, ArgMemoryBuffer, ArgStrOrBytesLike};
pub use number::{ArgIntoBool, ArgIntoComplex, ArgIntoFloat};
/// Implemented by any type that can be returned from a built-in Python function.