Skip to content

mcmah309/to_that

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

to_that

Declarative compile safe explict type conversion. Useful for chaining.

Example

For

    #[derive(Debug, PartialEq)]
    struct A(i32);

    #[derive(Debug, PartialEq)]
    struct B(i32);

    impl From<A> for B {
        fn from(a: A) -> Self {
            B(a.0)
        }
    }

Instead of

    fn main() {
        let result = B::from(A(1));
        assert_eq!(result, B(1));
    }

You can now do

    fn main() {
        let result = A(1).to::<B>();
        assert_eq!(result, B(1));
    }

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages