10 releases (6 breaking)

0.7.2 Oct 12, 2024
0.7.1 Jul 19, 2024
0.6.0 Jul 16, 2024
0.5.0 May 10, 2024
0.1.0 Sep 13, 2023

#371 in Rust patterns

Download history 41/week @ 2024-07-01 343/week @ 2024-07-15 10/week @ 2024-07-22 4/week @ 2024-07-29 37/week @ 2024-08-19 2/week @ 2024-09-02 8/week @ 2024-09-09 14/week @ 2024-09-16 51/week @ 2024-09-23 3/week @ 2024-09-30 131/week @ 2024-10-07 54/week @ 2024-10-14

239 downloads per month
Used in hollywood

MIT/Apache

12KB
76 lines

About

This crate strives to implement linear types.

The Linear<T> type that wraps a T. Linear types must not be dropped but eventualy consumed. There are only a few methods you can use on a linear type.

  • new() creates a new linear type.
  • into_inner() destructures a object returning the inner value as non linear type.
  • map() applies a FnOnce with the destructured inner type as parameter yielding another linear type.
  • Some variants of map() to handle Linear<Result<T,E>> and Linear<Option<T>>.
  • Linear<Result<T,E>> and Linear<Option<T>> support few forms of unwrap().

Unlike Pin, linear types can be moved, and unlike ManuallyDrop, linear types are required to be eventually deconstructed and consumed.

Status

This crate started with a discussion on IRC. It does not implement pure linear-type theory as this would require language support. Consider it as proof-of-concept. It may have some use and should be safe (in the Rust sense) to use. Improvements and PR's are welcome. This crate will be somewhat in flux before a 1.0 version is released.

Feature Flags

  • drop_unchecked

    When this crate is compiled with the drop_unchecked feature flag, then, in release builds, dropping a linear type will not panic as intended. The linear-type semantic is not enforced. This defeats the purpose of this crate. it adds only a small space and performance improvement. It should considered to be UB and should only be enabled on programs that are thoroughly validated and tested when required.

  • semipure

    When this crate is compiled with the semipure feature flag, then the Linear<T> type will implement the get_ref() method. This method will return a reference to the inner value. This is useful when you want to borrow the inner value without consuming the linear type. This feature is not recommended as it may break the linear type semantics.

Example

While any type can be wraped in a Linear<T>, it is recommended to use it with unique newtypes which transitioning into a final state. The state transitions can be functions or closures.

use linear_type::Linear;
use std::fs::File;
use std::io::{Read, Result};

// define some newtypes for the states
struct Filename(&'static str);
#[derive(Debug)]
struct ReadonlyFile(File);
#[derive(Debug)]
struct FileContent(String);

// define functions that transition from one state to the next.
fn open_file(Filename(name): Filename) -> Result<ReadonlyFile> {
    Ok(ReadonlyFile(File::open(name)?))
}

fn read_text(ReadonlyFile(mut file): ReadonlyFile) -> Result<FileContent> {
    let mut text = String::new();
    file.read_to_string(&mut text)?;
    Ok(FileContent(text))
}

fn main() {
    // Create a linear type and transition through the states
    let file_content = Linear::new(Filename("README.md"))
        .map(open_file)
        .map_ok(read_text)
        .unwrap_ok();

    // destructure the file content
    let FileContent(text) = file_content.into_inner();
    assert!(text.contains("# Example"));
}

No runtime deps

Features