pub struct Gaussian3dSceneRecord<B: Backend> {
pub colors_sh: <Param<Tensor<B, 2>> as Module<B>>::Record,
pub opacities: <Param<Tensor<B, 2>> as Module<B>>::Record,
pub positions: <Param<Tensor<B, 2>> as Module<B>>::Record,
pub rotations: <Param<Tensor<B, 2>> as Module<B>>::Record,
pub scalings: <Param<Tensor<B, 2>> as Module<B>>::Record,
}
Expand description
The record type for the module.
Fields§
§colors_sh: <Param<Tensor<B, 2>> as Module<B>>::Record
The module record associative type.
opacities: <Param<Tensor<B, 2>> as Module<B>>::Record
The module record associative type.
positions: <Param<Tensor<B, 2>> as Module<B>>::Record
The module record associative type.
rotations: <Param<Tensor<B, 2>> as Module<B>>::Record
The module record associative type.
scalings: <Param<Tensor<B, 2>> as Module<B>>::Record
The module record associative type.
Trait Implementations§
source§impl<B: Backend> Record<B> for Gaussian3dSceneRecord<B>
impl<B: Backend> Record<B> for Gaussian3dSceneRecord<B>
Auto Trait Implementations§
impl<B> !Freeze for Gaussian3dSceneRecord<B>
impl<B> !RefUnwindSafe for Gaussian3dSceneRecord<B>
impl<B> Send for Gaussian3dSceneRecord<B>
impl<B> !Sync for Gaussian3dSceneRecord<B>
impl<B> Unpin for Gaussian3dSceneRecord<B>where
<B as Backend>::FloatTensorPrimitive: Unpin,
<B as Backend>::QuantizedTensorPrimitive: Unpin,
<B as Backend>::Device: Unpin,
impl<B> UnwindSafe for Gaussian3dSceneRecord<B>where
<B as Backend>::FloatTensorPrimitive: UnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: 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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more