pub enum SurfaceRef {
Show 20 variants
BSplineSurface(BSplineSurfaceId),
BSplineSurfaceWithKnots(BSplineSurfaceWithKnotsId),
BezierSurface(BezierSurfaceId),
BoundedSurface(BoundedSurfaceId),
ConicalSurface(ConicalSurfaceId),
CylindricalSurface(CylindricalSurfaceId),
DegenerateToroidalSurface(DegenerateToroidalSurfaceId),
ElementarySurface(ElementarySurfaceId),
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§
BSplineSurface(BSplineSurfaceId)
BSplineSurfaceWithKnots(BSplineSurfaceWithKnotsId)
BezierSurface(BezierSurfaceId)
BoundedSurface(BoundedSurfaceId)
ConicalSurface(ConicalSurfaceId)
CylindricalSurface(CylindricalSurfaceId)
DegenerateToroidalSurface(DegenerateToroidalSurfaceId)
ElementarySurface(ElementarySurfaceId)
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 SurfaceRef
impl SurfaceRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> SurfaceRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for SurfaceRef
impl Clone for SurfaceRef
Source§fn clone(&self) -> SurfaceRef
fn clone(&self) -> SurfaceRef
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 SurfaceRef
impl Debug for SurfaceRef
Source§impl PartialEq for SurfaceRef
impl PartialEq for SurfaceRef
Source§fn eq(&self, other: &SurfaceRef) -> bool
fn eq(&self, other: &SurfaceRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SurfaceRef
Auto Trait Implementations§
impl Freeze for SurfaceRef
impl RefUnwindSafe for SurfaceRef
impl Send for SurfaceRef
impl Sync for SurfaceRef
impl Unpin for SurfaceRef
impl UnsafeUnpin for SurfaceRef
impl UnwindSafe for SurfaceRef
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