Coder Social home page Coder Social logo

fortify's People

Contributors

dzamkov avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

simonsan

fortify's Issues

Implement Send for Fortify

Fortify currently doesn't implement Send. Is this intentional?
It looks like the reason for this is the raw pointer in the Fortify Struct data_raw: *mut ()
If the Owner Type is Send, is there any reason why the resulting Fortify couldn't be Send?
Otherwise, a struct FortifySend<T, O> where T: Send, O: Send could implement Send manually, despite the raw pointer.

Moving values into fortify macro

I have started using this crate for a project. So far it has been going great. However, I ran into an issue needing to move a value into the fortify! macro.

The following code does not compile:

use fortify::{fortify, Fortify, WithLifetime};

#[derive(WithLifetime)]
pub struct I32<'a> {
    foo: &'a i32,
}

pub fn create<'a>(foo: i32) -> Fortify<I32<'a>> {
    fortify! {
        let foo = foo;
        yield I32 { foo: &foo };
    }
}

This can probably be fixed by changing the closure and async block to move blocks. However, this might be a breaking change. I have worked around this issue by manually writing the macros contents and changing the blocks to move blocks.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.