pub struct ResourceCoalescedTrace {
pub key: ResourceKey,
pub scope: ScopeId,
pub existing_owner_count: usize,
}Expand description
Payload-neutral trace for a shared-key Open that joined an existing resource.
Fields§
§key: ResourceKeyResource identity joined by the scope.
scope: ScopeIdScope that joined the existing resource.
existing_owner_count: usizeNumber of owners present before the join.
Trait Implementations§
Source§impl Clone for ResourceCoalescedTrace
impl Clone for ResourceCoalescedTrace
Source§fn clone(&self) -> ResourceCoalescedTrace
fn clone(&self) -> ResourceCoalescedTrace
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 ResourceCoalescedTrace
impl Debug for ResourceCoalescedTrace
impl Eq for ResourceCoalescedTrace
Source§impl PartialEq for ResourceCoalescedTrace
impl PartialEq for ResourceCoalescedTrace
Source§fn eq(&self, other: &ResourceCoalescedTrace) -> bool
fn eq(&self, other: &ResourceCoalescedTrace) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResourceCoalescedTrace
Auto Trait Implementations§
impl Freeze for ResourceCoalescedTrace
impl RefUnwindSafe for ResourceCoalescedTrace
impl Send for ResourceCoalescedTrace
impl Sync for ResourceCoalescedTrace
impl Unpin for ResourceCoalescedTrace
impl UnsafeUnpin for ResourceCoalescedTrace
impl UnwindSafe for ResourceCoalescedTrace
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