pub struct DataPointWithRadius<X, Y> { /* private fields */ }
Trait Implementations§
Source§impl<X: Clone, Y: Clone> Clone for DataPointWithRadius<X, Y>
impl<X: Clone, Y: Clone> Clone for DataPointWithRadius<X, Y>
Source§fn clone(&self) -> DataPointWithRadius<X, Y>
fn clone(&self) -> DataPointWithRadius<X, Y>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de, X, Y> Deserialize<'de> for DataPointWithRadius<X, Y>where
X: Deserialize<'de>,
Y: Deserialize<'de>,
impl<'de, X, Y> Deserialize<'de> for DataPointWithRadius<X, Y>where
X: Deserialize<'de>,
Y: Deserialize<'de>,
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<X, Y> From<DataPointWithRadius<X, Y>> for (X, Y)
impl<X, Y> From<DataPointWithRadius<X, Y>> for (X, Y)
Source§fn from(value: DataPointWithRadius<X, Y>) -> Self
fn from(value: DataPointWithRadius<X, Y>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<X, Y> Freeze for DataPointWithRadius<X, Y>
impl<X, Y> RefUnwindSafe for DataPointWithRadius<X, Y>where
X: RefUnwindSafe,
Y: RefUnwindSafe,
impl<X, Y> Send for DataPointWithRadius<X, Y>
impl<X, Y> Sync for DataPointWithRadius<X, Y>
impl<X, Y> Unpin for DataPointWithRadius<X, Y>
impl<X, Y> UnwindSafe for DataPointWithRadius<X, Y>where
X: UnwindSafe,
Y: UnwindSafe,
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