├── .github └── workflows │ ├── ci.yaml │ └── publish.yaml ├── .gitignore ├── .rustfmt.toml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── lib.rs └── transitive │ ├── fallible │ ├── mod.rs │ ├── try_from.rs │ └── try_into.rs │ ├── infallible │ ├── from.rs │ ├── into.rs │ └── mod.rs │ └── mod.rs └── tests ├── combined.rs ├── foreign_types.rs ├── from.rs ├── into.rs ├── macros.rs ├── try_from.rs └── try_into.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/transitive/fallible/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/src/transitive/fallible/mod.rs -------------------------------------------------------------------------------- /src/transitive/fallible/try_from.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/src/transitive/fallible/try_from.rs -------------------------------------------------------------------------------- /src/transitive/fallible/try_into.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/src/transitive/fallible/try_into.rs -------------------------------------------------------------------------------- /src/transitive/infallible/from.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/src/transitive/infallible/from.rs -------------------------------------------------------------------------------- /src/transitive/infallible/into.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/src/transitive/infallible/into.rs -------------------------------------------------------------------------------- /src/transitive/infallible/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/src/transitive/infallible/mod.rs -------------------------------------------------------------------------------- /src/transitive/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/src/transitive/mod.rs -------------------------------------------------------------------------------- /tests/combined.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/tests/combined.rs -------------------------------------------------------------------------------- /tests/foreign_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/tests/foreign_types.rs -------------------------------------------------------------------------------- /tests/from.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/tests/from.rs -------------------------------------------------------------------------------- /tests/into.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/tests/into.rs -------------------------------------------------------------------------------- /tests/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/tests/macros.rs -------------------------------------------------------------------------------- /tests/try_from.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/tests/try_from.rs -------------------------------------------------------------------------------- /tests/try_into.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobozaur/transitive/HEAD/tests/try_into.rs --------------------------------------------------------------------------------