1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: MIT
// Copyright (c) "2023" . The DeepCausality Authors. All Rights Reserved.
use crate::prelude::{Identifiable, IdentificationValue, Observation};

impl Identifiable for Observation {
    fn id(&self) -> IdentificationValue {
        self.id
    }
}