pub struct AnisotropicSizingSample {
pub position_m: [f64; 3],
pub target_sizes_m: [f64; 3],
pub directions: [[f64; 3]; 3],
pub reason: Option<String>,
}Fields§
§position_m: [f64; 3]§target_sizes_m: [f64; 3]§directions: [[f64; 3]; 3]§reason: Option<String>Implementations§
Source§impl AnisotropicSizingSample
impl AnisotropicSizingSample
pub fn is_valid_metric(&self) -> bool
Trait Implementations§
Source§impl Clone for AnisotropicSizingSample
impl Clone for AnisotropicSizingSample
Source§fn clone(&self) -> AnisotropicSizingSample
fn clone(&self) -> AnisotropicSizingSample
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 AnisotropicSizingSample
impl Debug for AnisotropicSizingSample
Source§impl<'de> Deserialize<'de> for AnisotropicSizingSample
impl<'de> Deserialize<'de> for AnisotropicSizingSample
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AnisotropicSizingSample, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AnisotropicSizingSample, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AnisotropicSizingSample
impl PartialEq for AnisotropicSizingSample
Source§impl Serialize for AnisotropicSizingSample
impl Serialize for AnisotropicSizingSample
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AnisotropicSizingSample
Auto Trait Implementations§
impl Freeze for AnisotropicSizingSample
impl RefUnwindSafe for AnisotropicSizingSample
impl Send for AnisotropicSizingSample
impl Sync for AnisotropicSizingSample
impl Unpin for AnisotropicSizingSample
impl UnsafeUnpin for AnisotropicSizingSample
impl UnwindSafe for AnisotropicSizingSample
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