pub struct SubdEdgeUse {
pub edge: u32,
pub reversed: bool,
}Expand description
One directed use of a subdivision edge in a face ring.
Fields§
§edge: u32Index into the parent surface’s edge array.
reversed: boolWhether this use traverses the edge from its second endpoint.
Trait Implementations§
Source§impl Clone for SubdEdgeUse
impl Clone for SubdEdgeUse
Source§fn clone(&self) -> SubdEdgeUse
fn clone(&self) -> SubdEdgeUse
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 moreimpl Copy for SubdEdgeUse
Source§impl Debug for SubdEdgeUse
impl Debug for SubdEdgeUse
Source§impl<'de> Deserialize<'de> for SubdEdgeUse
impl<'de> Deserialize<'de> for SubdEdgeUse
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
impl Eq for SubdEdgeUse
Source§impl JsonSchema for SubdEdgeUse
impl JsonSchema for SubdEdgeUse
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SubdEdgeUse
impl PartialEq for SubdEdgeUse
Source§impl Serialize for SubdEdgeUse
impl Serialize for SubdEdgeUse
impl StructuralPartialEq for SubdEdgeUse
Auto Trait Implementations§
impl Freeze for SubdEdgeUse
impl RefUnwindSafe for SubdEdgeUse
impl Send for SubdEdgeUse
impl Sync for SubdEdgeUse
impl Unpin for SubdEdgeUse
impl UnsafeUnpin for SubdEdgeUse
impl UnwindSafe for SubdEdgeUse
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