pub struct OpenOptions { /* private fields */ }
Implementations§
Source§impl OpenOptions
impl OpenOptions
pub fn new(opener: Box<dyn FileOpener>) -> Self
pub fn get_config(&self) -> OpenOptionsConfig
pub fn options(&mut self, options: OpenOptionsConfig) -> &mut Self
pub fn read(&mut self, read: bool) -> &mut Self
pub fn write(&mut self, write: bool) -> &mut Self
pub fn append(&mut self, append: bool) -> &mut Self
pub fn truncate(&mut self, truncate: bool) -> &mut Self
pub fn create(&mut self, create: bool) -> &mut Self
pub fn create_new(&mut self, create_new: bool) -> &mut Self
pub fn open<P: AsRef<Path>>( &mut self, path: P, ) -> Result<Box<dyn VirtualFile + Send + Sync + 'static>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpenOptions
impl !RefUnwindSafe for OpenOptions
impl !Send for OpenOptions
impl !Sync for OpenOptions
impl Unpin for OpenOptions
impl !UnwindSafe for OpenOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more