pub struct Mp3d;Expand description
Loader for Habitat-Sim Matterport3D .house semantic descriptors.
Trait Implementations§
Source§impl Dataset for Mp3d
impl Dataset for Mp3d
Source§type Options = Mp3dOptions
type Options = Mp3dOptions
Dataset-specific options.
Source§type ObjectCategory = Mp3dObjectCategory
type ObjectCategory = Mp3dObjectCategory
Dataset-specific object category type.
Source§type RegionCategory = Mp3dRegionCategory
type RegionCategory = Mp3dRegionCategory
Dataset-specific region category type.
Source§fn from_reader<R: BufRead>(
reader: R,
options: Self::Options,
) -> Result<SemanticScene<Mp3dObjectCategory, Mp3dRegionCategory>, Self::Error>
fn from_reader<R: BufRead>( reader: R, options: Self::Options, ) -> Result<SemanticScene<Mp3dObjectCategory, Mp3dRegionCategory>, Self::Error>
Loads a semantic scene from any buffered reader. Read more
Source§fn from_str(
input: &str,
options: Self::Options,
) -> Result<SemanticScene<Self::ObjectCategory, Self::RegionCategory>, Self::Error>
fn from_str( input: &str, options: Self::Options, ) -> Result<SemanticScene<Self::ObjectCategory, Self::RegionCategory>, Self::Error>
Loads a semantic scene from an in-memory string. Read more
Source§fn from_path(
path: impl AsRef<Path>,
options: Self::Options,
) -> Result<SemanticScene<Self::ObjectCategory, Self::RegionCategory>, Self::Error>
fn from_path( path: impl AsRef<Path>, options: Self::Options, ) -> Result<SemanticScene<Self::ObjectCategory, Self::RegionCategory>, Self::Error>
Loads a semantic scene from a path. Read more
Auto Trait Implementations§
impl Freeze for Mp3d
impl RefUnwindSafe for Mp3d
impl Send for Mp3d
impl Sync for Mp3d
impl Unpin for Mp3d
impl UnsafeUnpin for Mp3d
impl UnwindSafe for Mp3d
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