Struct bevy_math::sampling::shape_sampling::InteriorOf
source · pub struct InteriorOf<T: ShapeSample>(pub T);
Expand description
A wrapper struct that allows interior sampling from a ShapeSample
type directly as
a Distribution
.
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T: Clone + ShapeSample> Clone for InteriorOf<T>
impl<T: Clone + ShapeSample> Clone for InteriorOf<T>
source§fn clone(&self) -> InteriorOf<T>
fn clone(&self) -> InteriorOf<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: ShapeSample> Distribution<<T as ShapeSample>::Output> for InteriorOf<T>
impl<T: ShapeSample> Distribution<<T as ShapeSample>::Output> for InteriorOf<T>
source§fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> <T as ShapeSample>::Output
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> <T as ShapeSample>::Output
Generate a random value of
T
, using rng
as the source of randomness.source§fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
Create an iterator that generates random values of
T
, using rng
as
the source of randomness. Read moreimpl<T: Copy + ShapeSample> Copy for InteriorOf<T>
Auto Trait Implementations§
impl<T> Freeze for InteriorOf<T>where
T: Freeze,
impl<T> RefUnwindSafe for InteriorOf<T>where
T: RefUnwindSafe,
impl<T> Send for InteriorOf<T>where
T: Send,
impl<T> Sync for InteriorOf<T>where
T: Sync,
impl<T> Unpin for InteriorOf<T>where
T: Unpin,
impl<T> UnwindSafe for InteriorOf<T>where
T: UnwindSafe,
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.