pub struct FaceDescription {
pub outer: Vec<String>,
pub holes: Vec<Vec<String>>,
}Expand description
A face’s boundary loops, each as the coedges it runs through: +E / -E
for edge E traversed forwards / backwards, @V for a degenerate
coedge sitting at vertex V (a pole).
Fields§
§outer: Vec<String>§holes: Vec<Vec<String>>Trait Implementations§
Source§impl Clone for FaceDescription
impl Clone for FaceDescription
Source§fn clone(&self) -> FaceDescription
fn clone(&self) -> FaceDescription
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 FaceDescription
impl Debug for FaceDescription
Source§impl<'de> Deserialize<'de> for FaceDescription
impl<'de> Deserialize<'de> for FaceDescription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FaceDescription
impl PartialEq for FaceDescription
Source§fn eq(&self, other: &FaceDescription) -> bool
fn eq(&self, other: &FaceDescription) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FaceDescription
impl Serialize for FaceDescription
impl StructuralPartialEq for FaceDescription
Auto Trait Implementations§
impl Freeze for FaceDescription
impl RefUnwindSafe for FaceDescription
impl Send for FaceDescription
impl Sync for FaceDescription
impl Unpin for FaceDescription
impl UnsafeUnpin for FaceDescription
impl UnwindSafe for FaceDescription
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