pub struct RingEntry {
pub id: Uuid,
pub name: Option<String>,
pub touched_at: Instant,
}Expand description
One admitted id: the id itself, a best-effort display name (drawn from the dispatch result JSON — never a fresh fetch, to keep admission cheap on the Tier-1 latency budget), and the instant it was touched.
Fields§
§id: Uuid§name: Option<String>§touched_at: InstantTrait Implementations§
Auto Trait Implementations§
impl Freeze for RingEntry
impl RefUnwindSafe for RingEntry
impl Send for RingEntry
impl Sync for RingEntry
impl Unpin for RingEntry
impl UnsafeUnpin for RingEntry
impl UnwindSafe for RingEntry
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