raphtory_api/core/entities/properties/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::core::PropType;

pub mod props;

#[derive(thiserror::Error, Debug)]
pub enum PropError {
    #[error("Wrong type for property {name}: expected {expected:?} but actual type is {actual:?}")]
    PropertyTypeError {
        name: String,
        expected: PropType,
        actual: PropType,
    },
}