use crate::FollowSymlinks;
pub trait OpenOptionsFollowExt {
fn follow(&mut self, follow: FollowSymlinks) -> &mut Self;
}
impl OpenOptionsFollowExt for cap_primitives::fs::OpenOptions {
#[inline]
fn follow(&mut self, follow: FollowSymlinks) -> &mut Self {
self._cap_fs_ext_follow(follow)
}
}