pub struct MultiModelViewerModel<G: GaussianPod = DefaultGaussianPod> {
pub gaussian_buffers: MultiModelViewerGaussianBuffers<G>,
pub bind_groups: MultiModelViewerBindGroups,
}Expand description
The model of the MultiModelViewer.
Fields§
§gaussian_buffers: MultiModelViewerGaussianBuffers<G>Buffers for the model.
bind_groups: MultiModelViewerBindGroupsBind groups for the model.
Trait Implementations§
Auto Trait Implementations§
impl<G> Freeze for MultiModelViewerModel<G>
impl<G = GaussianPodWithShSingleCov3dSingleConfigs> !RefUnwindSafe for MultiModelViewerModel<G>
impl<G> Send for MultiModelViewerModel<G>
impl<G> Sync for MultiModelViewerModel<G>
impl<G> Unpin for MultiModelViewerModel<G>where
G: Unpin,
impl<G> UnsafeUnpin for MultiModelViewerModel<G>
impl<G = GaussianPodWithShSingleCov3dSingleConfigs> !UnwindSafe for MultiModelViewerModel<G>
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