pub enum FaceOrSurfaceRef {
Show 23 variants
AdvancedFace(AdvancedFaceId),
BSplineSurface(BSplineSurfaceId),
BSplineSurfaceWithKnots(BSplineSurfaceWithKnotsId),
BezierSurface(BezierSurfaceId),
BoundedSurface(BoundedSurfaceId),
ConicalSurface(ConicalSurfaceId),
CylindricalSurface(CylindricalSurfaceId),
DegenerateToroidalSurface(DegenerateToroidalSurfaceId),
ElementarySurface(ElementarySurfaceId),
Face(FaceId),
FaceSurface(FaceSurfaceId),
OffsetSurface(OffsetSurfaceId),
Plane(PlaneId),
QuasiUniformSurface(QuasiUniformSurfaceId),
RationalBSplineSurface(RationalBSplineSurfaceId),
SphericalSurface(SphericalSurfaceId),
Surface(SurfaceId),
SurfaceOfLinearExtrusion(SurfaceOfLinearExtrusionId),
SurfaceOfRevolution(SurfaceOfRevolutionId),
SweptSurface(SweptSurfaceId),
ToroidalSurface(ToroidalSurfaceId),
UniformSurface(UniformSurfaceId),
Complex(ComplexUnitId),
}Variants§
AdvancedFace(AdvancedFaceId)
BSplineSurface(BSplineSurfaceId)
BSplineSurfaceWithKnots(BSplineSurfaceWithKnotsId)
BezierSurface(BezierSurfaceId)
BoundedSurface(BoundedSurfaceId)
ConicalSurface(ConicalSurfaceId)
CylindricalSurface(CylindricalSurfaceId)
DegenerateToroidalSurface(DegenerateToroidalSurfaceId)
ElementarySurface(ElementarySurfaceId)
Face(FaceId)
FaceSurface(FaceSurfaceId)
OffsetSurface(OffsetSurfaceId)
Plane(PlaneId)
QuasiUniformSurface(QuasiUniformSurfaceId)
RationalBSplineSurface(RationalBSplineSurfaceId)
SphericalSurface(SphericalSurfaceId)
Surface(SurfaceId)
SurfaceOfLinearExtrusion(SurfaceOfLinearExtrusionId)
SurfaceOfRevolution(SurfaceOfRevolutionId)
SweptSurface(SweptSurfaceId)
ToroidalSurface(ToroidalSurfaceId)
UniformSurface(UniformSurfaceId)
Complex(ComplexUnitId)
Implementations§
Source§impl FaceOrSurfaceRef
impl FaceOrSurfaceRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> FaceOrSurfaceRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for FaceOrSurfaceRef
impl Clone for FaceOrSurfaceRef
Source§fn clone(&self) -> FaceOrSurfaceRef
fn clone(&self) -> FaceOrSurfaceRef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FaceOrSurfaceRef
impl Debug for FaceOrSurfaceRef
Source§impl PartialEq for FaceOrSurfaceRef
impl PartialEq for FaceOrSurfaceRef
Source§fn eq(&self, other: &FaceOrSurfaceRef) -> bool
fn eq(&self, other: &FaceOrSurfaceRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FaceOrSurfaceRef
Auto Trait Implementations§
impl Freeze for FaceOrSurfaceRef
impl RefUnwindSafe for FaceOrSurfaceRef
impl Send for FaceOrSurfaceRef
impl Sync for FaceOrSurfaceRef
impl Unpin for FaceOrSurfaceRef
impl UnsafeUnpin for FaceOrSurfaceRef
impl UnwindSafe for FaceOrSurfaceRef
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