Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-io/src/utils/mod.rs
6939 views
1
pub mod compression;
2
mod other;
3
4
pub use other::*;
5
#[cfg(feature = "cloud")]
6
pub mod byte_source;
7
pub mod file;
8
pub mod mkdir;
9
pub mod slice;
10
pub mod sync_on_close;
11
12
pub const URL_ENCODE_CHAR_SET: &percent_encoding::AsciiSet = &percent_encoding::CONTROLS
13
.add(b'/')
14
.add(b'=')
15
.add(b':')
16
.add(b' ')
17
.add(b'%');
18
19