// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
use ;
/// Error returned when all owners of a clock have been dropped.
///
/// This error indicates that all [`Clock`](crate::Clock) instances associated with a
/// [`ClockDriver`](crate::runtime::ClockDriver) have been dropped, meaning there are
/// no more timers to advance and advancing timers is no longer necessary.
///
/// Runtime integrations should use this error to determine when to stop the timer
/// advancement loop.
;