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