pub struct PrepCoordinateSummary {Show 22 fields
pub span_m: [f64; 3],
pub active_dimension_count: usize,
pub characteristic_length_m: f64,
pub element_geometry_node_count: usize,
pub element_geometry_edge_count: usize,
pub mean_element_edge_length_m: f64,
pub mean_element_area_m2: f64,
pub element_geometry_coverage_ratio: f64,
pub reference_element_coordinates_m: [[f64; 3]; 3],
pub reference_element_area_m2: f64,
pub element_topology_sample_element_count: usize,
pub element_topology_sample_edge_count: usize,
pub element_topology_sample_edge_nodes: [[u32; 2]; 8],
pub element_topology_sample_node_coordinates_m: [[f64; 3]; 8],
pub element_topology_sample_element_edges: [[u32; 3]; 4],
pub element_topology_sample_element_orientations: [[i8; 3]; 4],
pub element_topology_sample_element_areas_m2: [f64; 4],
pub element_topology_node_coordinates_m: Vec<[f64; 3]>,
pub element_topology_edge_nodes: Vec<[u32; 2]>,
pub element_topology_element_edges: Vec<[u32; 3]>,
pub element_topology_element_orientations: Vec<[i8; 3]>,
pub element_topology_element_areas_m2: Vec<f64>,
}Fields§
§span_m: [f64; 3]§active_dimension_count: usize§characteristic_length_m: f64§element_geometry_node_count: usize§element_geometry_edge_count: usize§mean_element_edge_length_m: f64§mean_element_area_m2: f64§element_geometry_coverage_ratio: f64§reference_element_coordinates_m: [[f64; 3]; 3]§reference_element_area_m2: f64§element_topology_sample_element_count: usize§element_topology_sample_edge_count: usize§element_topology_sample_edge_nodes: [[u32; 2]; 8]§element_topology_sample_node_coordinates_m: [[f64; 3]; 8]§element_topology_sample_element_edges: [[u32; 3]; 4]§element_topology_sample_element_orientations: [[i8; 3]; 4]§element_topology_sample_element_areas_m2: [f64; 4]§element_topology_node_coordinates_m: Vec<[f64; 3]>§element_topology_edge_nodes: Vec<[u32; 2]>§element_topology_element_edges: Vec<[u32; 3]>§element_topology_element_orientations: Vec<[i8; 3]>§element_topology_element_areas_m2: Vec<f64>Trait Implementations§
Source§impl Clone for PrepCoordinateSummary
impl Clone for PrepCoordinateSummary
Source§fn clone(&self) -> PrepCoordinateSummary
fn clone(&self) -> PrepCoordinateSummary
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 PrepCoordinateSummary
impl Debug for PrepCoordinateSummary
Source§impl<'de> Deserialize<'de> for PrepCoordinateSummary
impl<'de> Deserialize<'de> for PrepCoordinateSummary
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 PrepCoordinateSummary
impl PartialEq for PrepCoordinateSummary
Source§impl Serialize for PrepCoordinateSummary
impl Serialize for PrepCoordinateSummary
impl StructuralPartialEq for PrepCoordinateSummary
Auto Trait Implementations§
impl Freeze for PrepCoordinateSummary
impl RefUnwindSafe for PrepCoordinateSummary
impl Send for PrepCoordinateSummary
impl Sync for PrepCoordinateSummary
impl Unpin for PrepCoordinateSummary
impl UnsafeUnpin for PrepCoordinateSummary
impl UnwindSafe for PrepCoordinateSummary
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