crepererum commented on code in PR #4583: URL: https://github.com/apache/arrow-rs/pull/4583#discussion_r1280245416
########## arrow-data/src/data.rs: ########## @@ -29,8 +29,9 @@ use std::sync::Arc; use crate::equal; -mod buffers; -pub use buffers::*; +/// A collection of [`Buffer`] +#[doc(hidden)] +pub type Buffers<'a> = &'a [Buffer]; Review Comment: Could you add a "deprecated" marker to it though so it can be removed in some future version? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
