Docs.rs
oxide-core-engine-0.1.0
oxide-core-engine 0.1.0
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
alan13367
Dependencies
bytemuck ^1.21
normal
egui ^0.33
normal
egui-winit ^0.33
normal
glam ^0.32.1
normal
notify ^8.2.0
normal
oxide-core-asset ^0.1.0
normal
oxide_ecs ^0.1.0
normal
oxide-core-input ^0.1.0
normal
oxide-core-math ^0.1.0
normal
oxide-core-renderer ^0.1.0
normal
oxide-core-transform ^0.1.0
normal
pollster ^0.4
normal
thiserror ^2.0
normal
tracing ^0.1
normal
wgpu ^28.0.0
normal
winit ^0.30
normal
Versions
30.36%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
IntoSystem
oxide_
engine
0.1.0
Into
System
Required Methods
into_system
Implementors
In oxide_
engine::
ecs
oxide_engine
::
ecs
Trait
Into
System
Copy item path
Source
pub trait IntoSystem<Marker =
()
> { // Required method fn
into_system
(self) ->
System
; }
Required Methods
§
Source
fn
into_system
(self) ->
System
Implementors
§
Source
§
impl
IntoSystem
for
System
Source
§
impl<F>
IntoSystem
<
fn
(&mut
World
)> for F
where F:
FnMut
(&mut
World
) + 'static,
Source
§
impl<Func, A>
IntoSystem
<
fn
(A)> for Func
where Func:
FnMut
(A) + 'static, A:
SystemParam
+ 'static,
Source
§
impl<Func, A, B>
IntoSystem
<
fn
(A, B)> for Func
where Func:
FnMut
(A, B) + 'static, A:
SystemParam
+ 'static, B:
SystemParam
+ 'static,
Source
§
impl<Func, A, B, C>
IntoSystem
<
fn
(A, B, C)> for Func
where Func:
FnMut
(A, B, C) + 'static, A:
SystemParam
+ 'static, B:
SystemParam
+ 'static, C:
SystemParam
+ 'static,
Source
§
impl<Func, A, B, C, D>
IntoSystem
<
fn
(A, B, C, D)> for Func
where Func:
FnMut
(A, B, C, D) + 'static, A:
SystemParam
+ 'static, B:
SystemParam
+ 'static, C:
SystemParam
+ 'static, D:
SystemParam
+ 'static,
Source
§
impl<Func, A, B, C, D, E>
IntoSystem
<
fn
(A, B, C, D, E)> for Func
where Func:
FnMut
(A, B, C, D, E) + 'static, A:
SystemParam
+ 'static, B:
SystemParam
+ 'static, C:
SystemParam
+ 'static, D:
SystemParam
+ 'static, E:
SystemParam
+ 'static,