pub struct DoubletLink {
pub index: u32,
pub source: u32,
pub target: u32,
}Expand description
A single doublet link state captured by a transition (mirror of the
C# Platform.Data.Doublets.Link<uint>).
Fields§
§index: u32§source: u32§target: u32Implementations§
Trait Implementations§
Source§impl Clone for DoubletLink
impl Clone for DoubletLink
Source§fn clone(&self) -> DoubletLink
fn clone(&self) -> DoubletLink
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 DoubletLink
impl Debug for DoubletLink
Source§impl Default for DoubletLink
impl Default for DoubletLink
Source§fn default() -> DoubletLink
fn default() -> DoubletLink
Returns the “default value” for a type. Read more
Source§impl Hash for DoubletLink
impl Hash for DoubletLink
Source§impl PartialEq for DoubletLink
impl PartialEq for DoubletLink
Source§fn eq(&self, other: &DoubletLink) -> bool
fn eq(&self, other: &DoubletLink) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DoubletLink
impl Eq for DoubletLink
impl StructuralPartialEq for DoubletLink
Auto Trait Implementations§
impl Freeze for DoubletLink
impl RefUnwindSafe for DoubletLink
impl Send for DoubletLink
impl Sync for DoubletLink
impl Unpin for DoubletLink
impl UnsafeUnpin for DoubletLink
impl UnwindSafe for DoubletLink
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