pub struct ConnectionPoint {
pub x: f64,
pub y: f64,
}Expand description
Connection point coordinates for relationship visualization
Fields§
§x: f64X coordinate
y: f64Y coordinate
Trait Implementations§
Source§impl Clone for ConnectionPoint
impl Clone for ConnectionPoint
Source§fn clone(&self) -> ConnectionPoint
fn clone(&self) -> ConnectionPoint
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 Debug for ConnectionPoint
impl Debug for ConnectionPoint
Source§impl<'de> Deserialize<'de> for ConnectionPoint
impl<'de> Deserialize<'de> for ConnectionPoint
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConnectionPoint, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConnectionPoint, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConnectionPoint
impl PartialEq for ConnectionPoint
Source§impl Serialize for ConnectionPoint
impl Serialize for ConnectionPoint
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 ConnectionPoint
Auto Trait Implementations§
impl Freeze for ConnectionPoint
impl RefUnwindSafe for ConnectionPoint
impl Send for ConnectionPoint
impl Sync for ConnectionPoint
impl Unpin for ConnectionPoint
impl UnwindSafe for ConnectionPoint
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