pub enum DataCenterModelOutputFailure {
    DemandExceedingSupply,
    InfiniteDelay {
        server_type: String,
        number_of_jobs: f64,
        mean_job_duration: f64,
    },
    LoadToInactiveServer,
    OutsideDecisionSpace,
    SLOMaxUtilizationExceeded,
}
Expand description

Model failure.

Variants

DemandExceedingSupply

InfiniteDelay

Fields

server_type: String
number_of_jobs: f64
mean_job_duration: f64

LoadToInactiveServer

OutsideDecisionSpace

SLOMaxUtilizationExceeded

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

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

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

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

Generates an offline problem instance given some $input$ (with certainty).

Performs an online update of the given problem instance $o$ with some $input$ (which may be uncertain).

Notes:

  • Only allows for a single location, source, and job type.

Performs an online update of the given problem instance $o$ with some $input$ (which may be uncertain).

Generates an offline problem instance given some $input$ (with certainty).

Performs an online update of the given problem instance $o$ with some $input$ (which may be uncertain).

Notes:

  • Only allows for a single location, source, and job type.
  • Assumes full utilization and averages the energy cost over the time horizon.

Performs an online update of the given problem instance $o$ with some $input$ (which may be uncertain).

Failure when result lies outside of the decision space.

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

This method tests for !=.

Hitting cost.

Movement cost.

Objective function. Calculates the cost of a schedule.

Inverted Objective function. Calculates the cost of a schedule. Pays the switching cost for powering down rather than powering up. Read more

$\alpha$-unfair Objective function. Calculates the cost of a schedule.

Objective function starting from an initial configuration other than $\mathbf{0}$.

Movement in the decision space.

Hitting cost.

Movement cost.

Objective function. Calculates the cost of a schedule.

Inverted Objective function. Calculates the cost of a schedule. Pays the switching cost for powering down rather than powering up. Read more

$\alpha$-unfair Objective function. Calculates the cost of a schedule.

Objective function starting from an initial configuration other than $\mathbf{0}$.

Movement in the decision space.

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 alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Arguments for exception

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

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

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.