pub struct ConnectionTargetCandidate {
pub target: ConnectionTargetHandle,
pub node_rect: CanvasRect,
pub bounds: HandleBounds,
}Expand description
Renderer-normalized target-handle geometry plus target connectability policy.
Fields§
§target: ConnectionTargetHandle§node_rect: CanvasRect§bounds: HandleBoundsImplementations§
Source§impl ConnectionTargetCandidate
impl ConnectionTargetCandidate
pub fn new( target: ConnectionTargetHandle, node_rect: CanvasRect, bounds: HandleBounds, ) -> Self
Trait Implementations§
Source§impl Clone for ConnectionTargetCandidate
impl Clone for ConnectionTargetCandidate
Source§fn clone(&self) -> ConnectionTargetCandidate
fn clone(&self) -> ConnectionTargetCandidate
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 moreimpl Copy for ConnectionTargetCandidate
Source§impl Debug for ConnectionTargetCandidate
impl Debug for ConnectionTargetCandidate
Source§impl<'de> Deserialize<'de> for ConnectionTargetCandidate
impl<'de> Deserialize<'de> for ConnectionTargetCandidate
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 PartialEq for ConnectionTargetCandidate
impl PartialEq for ConnectionTargetCandidate
Source§fn eq(&self, other: &ConnectionTargetCandidate) -> bool
fn eq(&self, other: &ConnectionTargetCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConnectionTargetCandidate
Auto Trait Implementations§
impl Freeze for ConnectionTargetCandidate
impl RefUnwindSafe for ConnectionTargetCandidate
impl Send for ConnectionTargetCandidate
impl Sync for ConnectionTargetCandidate
impl Unpin for ConnectionTargetCandidate
impl UnsafeUnpin for ConnectionTargetCandidate
impl UnwindSafe for ConnectionTargetCandidate
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