pub struct PropertyDefinition {
    pub name: String,
    pub original_type: String,
    pub fully_qualified_dependencies: Vec<String>,
    pub fully_qualified_type: String,
}

Fields

name: String

String representation of the identifier of a declared Property

original_type: String

Type as authored, literally. May be partially namespace-qualified or aliased.

fully_qualified_dependencies: Vec<String>

Vec of constituent components of a type, for example Rc<String> would have the dependencies [std::rc::Rc and std::string::String]

fully_qualified_type: String

Same type as original_type, but dynamically normalized to be fully qualified, suitable for reexporting

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.