FileLock

Struct FileLock 

Source
pub struct FileLock { /* private fields */ }
Expand description

File lock guard that automatically releases the lock when dropped

Implementations§

Source§

impl FileLock

Source

pub fn lock(file: File, lock_type: LockType) -> Result<Self>

Acquire a file lock (blocking)

This will block until the lock can be acquired.

§Platform Support
  • Unix: Uses flock(2)
  • Windows: Uses LockFile/LockFileEx
§Examples
use mmap_rs::{FileLock, LockType};
use std::fs::File;

let file = File::open("data.bin")?;
let lock = FileLock::lock(file, LockType::Shared)?;
// File is locked for reading
// Lock automatically released when `lock` is dropped
Source

pub fn try_lock(file: File, lock_type: LockType) -> Result<Self>

Try to acquire a file lock (non-blocking)

Returns immediately if the lock cannot be acquired.

§Examples
use mmap_rs::{FileLock, LockType};
use std::fs::File;

let file = File::open("data.bin")?;
match FileLock::try_lock(file, LockType::Exclusive) {
    Ok(lock) => {
        // Got the lock
    }
    Err(_) => {
        // Lock not available
    }
}
Source

pub fn file(&self) -> &File

Get a reference to the underlying file

Source

pub fn lock_type(&self) -> LockType

Get the lock type

Source

pub fn unlock(self) -> File

Unlock and consume the lock guard, returning the file

Trait Implementations§

Source§

impl Drop for FileLock

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl Send for FileLock

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.