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