stayrascal commented on code in PR #324: URL: https://github.com/apache/arrow-rs-object-store/pull/324#discussion_r2052570539
########## src/lib.rs: ########## @@ -1283,6 +1359,22 @@ pub struct PutResult { pub version: Option<String>, } +/// Options for [`ObjectStore::list_opts`] +#[derive(Debug, Clone, Default)] +pub struct ListOpts { + /// The listed objects whose locations are greater than `offset` + pub offset: Option<Path>, + /// True means returns common prefixes (directories) in addition to object in [`ListResult`] + pub delimiter: bool, + /// Implementation-specific extensions. Intended for use by [`ObjectStore`] implementations + /// that need to pass context-specific information (like tracing spans) via trait methods. + /// + /// These extensions are ignored entirely by backends offered through this crate. + /// + /// They are also eclused from [`PartialEq`] and [`Eq`]. Review Comment: thanks, will remove the same comments -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org