pub struct FilterBuilder<'w> { /* private fields */ }Implementations§
Source§impl<'w> FilterBuilder<'w>
impl<'w> FilterBuilder<'w>
pub fn new(world: &'w World) -> Self
pub fn with_components<'c, G: ComponentGroup<'c>>(self) -> Self
pub fn build(self) -> Filter
Trait Implementations§
Source§impl<'w> TermBuilder for FilterBuilder<'w>
impl<'w> TermBuilder for FilterBuilder<'w>
fn world(&mut self) -> *mut ecs_world_t
fn filter_desc(&mut self) -> &mut ecs_filter_desc_t
fn current_term(&mut self) -> &mut ecs_term_t
fn next_term(&mut self)
fn term<A: Component>(self) -> Self
fn without<A: Component>(self) -> Self
fn term_dynamic(self, comp_id: EntityId) -> Self
fn with_components<'c, G: ComponentGroup<'c>>(self) -> Self
Auto Trait Implementations§
impl<'w> Freeze for FilterBuilder<'w>
impl<'w> RefUnwindSafe for FilterBuilder<'w>
impl<'w> !Send for FilterBuilder<'w>
impl<'w> !Sync for FilterBuilder<'w>
impl<'w> Unpin for FilterBuilder<'w>
impl<'w> UnwindSafe for FilterBuilder<'w>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more