raphtory_api/core/entities/properties/
mod.rs

1use crate::core::PropType;
2
3pub mod props;
4
5#[derive(thiserror::Error, Debug, PartialEq)]
6pub enum PropError {
7    #[error("Wrong type for property {name}: expected {expected:?} but actual type is {actual:?}")]
8    PropertyTypeError {
9        name: String,
10        expected: PropType,
11        actual: PropType,
12    },
13}