pub struct LinkNode<R: Resource> {
pub sid: SubmissionId,
pub state: State<R>,
}
Expand description
Node for the link.
Fields§
§sid: SubmissionId
Submission id of the node.
state: State<R>
Resource state of the node.
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for LinkNode<R>
impl<R> RefUnwindSafe for LinkNode<R>where
<R as Resource>::Access: RefUnwindSafe,
<R as Resource>::Layout: RefUnwindSafe,
<R as Resource>::Usage: RefUnwindSafe,
impl<R> Send for LinkNode<R>
impl<R> Sync for LinkNode<R>
impl<R> Unpin for LinkNode<R>
impl<R> UnwindSafe for LinkNode<R>where
<R as Resource>::Access: UnwindSafe,
<R as Resource>::Layout: UnwindSafe,
<R as Resource>::Usage: UnwindSafe,
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