pub struct EdgeDoc<S: 'static, T: 'static> {
pub descriptor: TransitionDescriptor<S, T>,
}Expand description
Exported transition metadata for one graph edge site.
Fields§
§descriptor: TransitionDescriptor<S, T>Underlying descriptor from statum.
Trait Implementations§
impl<S: Copy + 'static, T: Copy + 'static> Copy for EdgeDoc<S, T>
impl<S: Eq + 'static, T: Eq + 'static> Eq for EdgeDoc<S, T>
impl<S: 'static, T: 'static> StructuralPartialEq for EdgeDoc<S, T>
Auto Trait Implementations§
impl<S, T> Freeze for EdgeDoc<S, T>
impl<S, T> RefUnwindSafe for EdgeDoc<S, T>where
T: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, T> Send for EdgeDoc<S, T>
impl<S, T> Sync for EdgeDoc<S, T>
impl<S, T> Unpin for EdgeDoc<S, T>
impl<S, T> UnsafeUnpin for EdgeDoc<S, T>where
T: UnsafeUnpin,
S: UnsafeUnpin,
impl<S, T> UnwindSafe for EdgeDoc<S, T>
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