1/* 2 * SPDX-License-Identifier: MIT 3 * Copyright (c) "2025" . The DeepCausality Authors and Contributors. All Rights Reserved. 4 */ 5 6use crate::{Identifiable, SymbolicTime}; 7 8impl Identifiable for SymbolicTime { 9 fn id(&self) -> u64 { 10 self.id 11 } 12}