cberner / fuser

Filesystem in Userspace (FUSE) for Rust
MIT License
835 stars 114 forks source link

Is there a good reason to `parse_options_from_args` as a `pub(crate)` and not as a `pub` ? #216

Closed ahmed-masud closed 2 years ago

ahmed-masud commented 2 years ago

https://github.com/cberner/fuser/blob/3fb6586aaf2e4ef3162c59ae798728a1dcf41eee/src/mnt/mount_options.rs#L161

Would be nice to have this available outside :-) as it builds out MountOption reasonably nicely.

cberner commented 2 years ago

Yes, that is only there for backwards compatibility with old versions of this crate. I plan to remove it in the future, and so don't want to make that format public.