Struct peace_core::FlowId

source ·
pub struct FlowId(_);
Expand description

Identifier or name of a process flow.

Examples are "dev_env" and "artifact" in the following snippet:

peace dev_env discover # StatesDiscoverCmd
peace dev_env status   # StatesSavedDisplayCmd
peace dev_env deploy   # EnsureCmd
peace dev_env clean    # CleanCmd

peace artifact discover # StatesDiscoverCmd
peace artifact status   # StatesSavedDisplayCmd
peace artifact publish  # EnsureCmd

Must begin with a letter or underscore, and contain only letters, numbers, and underscores.

Examples

The following are all examples of valid FlowIds:

let _snake = flow_id!("snake_case");
let _camel = flow_id!("camelCase");
let _pascal = flow_id!("PascalCase");

Implementations§

Returns a new FlowId if the given &str is valid.

Most users should use the flow_id! macro as this provides compile time checks and returns a const value.

Returns whether the provided &str is a valid station identifier.

Methods from Deref<Target = Cow<'static, str>>§

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

Returns true if the data is borrowed, i.e. if to_mut would require additional work.

Examples
#![feature(cow_is_borrowed)]
use std::borrow::Cow;

let cow = Cow::Borrowed("moo");
assert!(cow.is_borrowed());

let bull: Cow<'_, str> = Cow::Owned("...moo?".to_string());
assert!(!bull.is_borrowed());
🔬This is a nightly-only experimental API. (cow_is_borrowed)

Returns true if the data is owned, i.e. if to_mut would be a no-op.

Examples
#![feature(cow_is_borrowed)]
use std::borrow::Cow;

let cow: Cow<'_, str> = Cow::Owned("moo".to_string());
assert!(cow.is_owned());

let bull = Cow::Borrowed("...moo?");
assert!(!bull.is_owned());

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
The resulting type after dereferencing.
Dereferences the value.
Deserialize this value from the given Serde deserializer. Read more
Formats the value using the given formatter. Read more
The associated error which can be returned from parsing.
Parses a string s to return a value of this type. 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 tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Serialize this value into the given Serde serializer. 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.

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
Converts the given value to a String. 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.