pub struct Property { /* private fields */ }
Expand description

Configuration item for a property on a GraphQL type, modeled as properties on a graph node.

Examples


let p = Property::new("name".to_string(), UsesFilter::all(), "String".to_string(), true,
false, None, None);

Implementations

Creates a new Property struct.

Arguments
  • a String for the name of the property
  • a String for the type of the property
  • a boolean that, if true, indicatees that the property is mandatory, and if false, that the property is optional
  • a boolean that, if true, indicates that the property is a list of scalers, and if false, that the property is a single value
  • an optional string providing the name of a resolver, if the property is a dynamic property with a custom resolver, and
  • an optional string providing the name of a custom validator
Examples

let p = Property::new("name".to_string(), UsesFilter::all(), "String".to_string(), true,
false, None, None);

Returns a boolean that if true, indicates that this property contains a list of scalar values, and if false, indicates that the property contains only one value (or potentially zero values if required is also false).

Examples
use warpgrapher::engine::config::Property;

let p = Property::new(“name”.to_string(), UsesFiter::all(), “String”.to_string(), true, false, None, None);

assert!(!p.list());

Returns the name of the property

Examples
use warpgrapher::engine::config::Property;

let p = Property::new(“propname”.to_string(), UsesFilter::all(), “String”.to_string(), true, false, None, None);

assert_eq!(“propname”, p.name());

Returns the filter describing how a property is to be used

Examples
use warpgrapher::engine::config::Property;

let p = Property::new(“propname”.to_string(), UsesFilter::all(), “String”.to_string(), true, false, None, None);

assert_eq!(UsesFilter::all(), p.uses());

Returns the optional name of the custom resolver associated with this property

Examples
use warpgrapher::engine::config::Property;

let p = Property::new(“propname”.to_string(), “String”.to_string(), true, false, Some(“CustomResolver”.to_string()), None);

assert_eq!(“CustomResolver”, p.resolver().unwrap());

Returns a boolean that if true, indicates that this property is mandatory, and if false, that the property is not required, and may be absent.

Examples
use warpgrapher::engine::config::Property;

let p = Property::new(“name”.to_string(), “String”.to_string(), true, false, None, None);

assert!(p.required());

Returns the name of the type of the property

Examples
use warpgrapher::engine::config::Property;

let p = Property::new(“propname”.to_string(), “String”.to_string(), true, false, None, None);

assert_eq!(“String”, p.type_name());

Returns the optional name of the custom validator associated with this property

Examples
use warpgrapher::engine::config::Property;

let p = Property::new(“propname”.to_string(), “String”.to_string(), true, false, None, Some(“CustomValidator”.to_string()));

assert_eq!(“CustomValidator”, p.validator().unwrap());

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

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. 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

Compare self to key and return true if they are equal.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more