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