Enum minecraft_assets::schemas::blockstates::multipart::StateValue[][src]

pub enum StateValue {
    Bool(bool),
    String(String),
}
Expand description

The right-hand side of a Condition requirement.

"when": {"north": "side|up", "east": false }
                  ^^^^^^^^^          ^^^^^

Variants

Bool(bool)

Tuple Fields

0: bool

Unquoted bool value.

String(String)

Tuple Fields

0: String

String value (possibly boolean-like, i.e., "true" or "false").

Implementations

Returns the value interpreted as a bool, or None if this is not possible.

Example
let value = StateValue::from(true);
assert_eq!(value.as_bool(), Some(true));

let value = StateValue::from(false);
assert_eq!(value.as_bool(), Some(false));

let value = StateValue::from("true");
assert_eq!(value.as_bool(), Some(true));

let value = StateValue::from("false");
assert_eq!(value.as_bool(), Some(false));

let value = StateValue::from("not_a_bool");
assert_eq!(value.as_bool(), None);

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

Performs the conversion.

Performs the conversion.

Performs the conversion.

Examples

Comparing to an unquoted boolean value:

let left = StateValue::from(true);

let right = StateValue::from(true);
assert!(left == right);

let right = StateValue::from(false);
assert!(left != right);

let right = StateValue::from("true");
assert!(left == right);

let right = StateValue::from("false");
assert!(left != right);

let right = StateValue::from("not_a_bool");
assert!(left != right);

Comparing to a quoted boolean value:

let left = StateValue::from("true");

let right = StateValue::from(true);
assert!(left == right);

let right = StateValue::from(false);
assert!(left != right);

Comparing to a single string value:

let left = StateValue::from("foo");

let right = StateValue::from("foo");
assert!(left == right);

let right = StateValue::from("bar");
assert!(left != right);

let right = StateValue::from(true);
assert!(left != right);

Comparing to a multi-string value with | bars:

let left = StateValue::from("foo|bar");

let right = StateValue::from("foo");
assert!(left == right);

let right = StateValue::from("bar");
assert!(left == right);

let right = StateValue::from("not_foo_or_bar");
assert!(left != right);

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

This method tests for !=.

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

Performs the conversion.

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.