pub enum ConnectorEndpoint {
ConnectorEndpointOneOf(Box<ConnectorEndpointOneOf>),
ConnectorEndpointOneOf1(Box<ConnectorEndpointOneOf1>),
}
Expand description
ConnectorEndpoint : Stores canvas location for a connector start/end point. Stores canvas location for a connector start/end point.
Variants§
ConnectorEndpointOneOf(Box<ConnectorEndpointOneOf>)
ConnectorEndpointOneOf1(Box<ConnectorEndpointOneOf1>)
Trait Implementations§
Source§impl Clone for ConnectorEndpoint
impl Clone for ConnectorEndpoint
Source§fn clone(&self) -> ConnectorEndpoint
fn clone(&self) -> ConnectorEndpoint
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 ConnectorEndpoint
impl Debug for ConnectorEndpoint
Source§impl Default for ConnectorEndpoint
impl Default for ConnectorEndpoint
Source§impl<'de> Deserialize<'de> for ConnectorEndpoint
impl<'de> Deserialize<'de> for ConnectorEndpoint
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 ConnectorEndpoint
impl PartialEq for ConnectorEndpoint
Source§impl Serialize for ConnectorEndpoint
impl Serialize for ConnectorEndpoint
impl StructuralPartialEq for ConnectorEndpoint
Auto Trait Implementations§
impl Freeze for ConnectorEndpoint
impl RefUnwindSafe for ConnectorEndpoint
impl Send for ConnectorEndpoint
impl Sync for ConnectorEndpoint
impl Unpin for ConnectorEndpoint
impl UnwindSafe for ConnectorEndpoint
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