Skip to main content

TaskRef

Struct TaskRef 

Source
pub struct TaskRef(/* private fields */);
Expand description

One task named by another task’s Task::delivers or Task::delivered_by.

A string with one of two spellings, decided the way a DependencyEndpoint decides it: one holding a colon is <source>:<native> and names a task of any source, and one without is a bare native id naming a task of the source that holds the list. So a native id holding a colon cannot be named bare, exactly as it cannot in onetaskgraph.depends_on.

Implementations§

Source§

impl TaskRef

Source

pub const DELIVERS_KEY: &'static str = "onetaskgraph.delivers"

The reserved metadata key a source records Task::delivers under when its backend has no notion of its own.

Spelled once, here, for the reason Repository::METADATA_KEY is.

Source

pub const DELIVERED_BY_KEY: &'static str = "onetaskgraph.delivered_by"

The reserved metadata key a source records Task::delivered_by under when its backend has no notion of its own.

Source

pub fn new(id: impl Into<String>) -> Result<Self, String>

One entry, once it is established it is a task id.

§Errors

Returns a message saying why when the id is empty, or when it is qualified with a source name that breaks the pattern or with no native id after the colon.

Source

pub fn qualified(source: &SourceName, native: &NativeId) -> Self

The qualified entry naming native in source.

Source

pub fn as_str(&self) -> &str

The entry as it is spelled.

Source

pub fn is_qualified(&self) -> bool

Whether the entry names its source in writing.

Source

pub fn parts<'a>(&'a self, near_source: &'a str) -> (&'a str, &'a str)

The source and the native id this entry names, reading a bare entry as naming a task of near_source.

Source

pub fn in_source(&self, near_source: &SourceName) -> Self

This entry qualified, reading a bare one as naming a task of near_source.

Source

pub fn listed( field: &str, near: &NativeId, near_source: Option<&SourceName>, entries: Vec<Self>, ) -> Result<Vec<Self>, String>

The entries of one task’s list, once it is established that none names the task itself and none repeats.

field is what the list is called where it is stored, for the message. near is the task holding the list and near_source the configured name of the source holding it, which is what tells T-1 and work:T-1 apart as the same task. A source that does not know its own name passes None, and then only a bare entry can be recognised as naming this task or one of the other entries.

§Errors

Returns a message naming the task and the entry.

Source

pub fn from_value( field: &str, near: &NativeId, near_source: Option<&SourceName>, value: Option<&Value>, ) -> Result<Vec<Self>, String>

The entries one task’s list holds, read out of the JSON a source stores it as.

value is None when the source holds no list at all, which is the empty one.

§Errors

Returns a message naming the task and the entry when the value is not a list, when an entry is not a task id, or when Self::listed refuses the list.

Trait Implementations§

Source§

impl Clone for TaskRef

Source§

fn clone(&self) -> TaskRef

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TaskRef

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for TaskRef

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for TaskRef

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for TaskRef

Source§

impl From<TaskRef> for String

Source§

fn from(entry: TaskRef) -> Self

Converts to this type from the input type.
Source§

impl Hash for TaskRef

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

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

impl JsonSchema for TaskRef

Source§

fn schema_name() -> Cow<'static, str>

The name of the generated JSON Schema. Read more
Source§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
Source§

fn json_schema(generator: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
Source§

fn inline_schema() -> bool

Whether JSON Schemas generated for this type should be included directly in parent schemas, rather than being re-used where possible using the $ref keyword. Read more
Source§

impl Ord for TaskRef

Source§

fn cmp(&self, other: &TaskRef) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

fn clamp_to<R>(self, range: R) -> Self
where Self: Sized, R: ClampBounds<Self>,

🔬This is a nightly-only experimental API. (clamp_to)
Restrict a value to a certain range. Read more
Source§

impl PartialEq for TaskRef

Source§

fn eq(&self, other: &TaskRef) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for TaskRef

Source§

fn partial_cmp(&self, other: &TaskRef) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for TaskRef

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for TaskRef

Source§

impl TryFrom<String> for TaskRef

Source§

type Error = String

The type returned in the event of a conversion error.
Source§

fn try_from(id: String) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.