valkyrie-types 0.0.8

Shard types for valkyrie language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::*;

/// A property is a field that can be accessed by a getter and setter
#[derive(Clone, Debug)]
pub struct ValkyrieProperty {
    /// The field name of this property
    name: String,
    /// The type of the property
    initial: InitializeType,
    /// The type of the property
    typing: ValkyrieMetaType,
    /// Can be a progress or a value
    default: Option<ExpressionNode>,
}