Struct sp_weights::Weight

source ·
pub struct Weight { /* private fields */ }

Implementations§

Set the reference time part of the weight.

Set the storage size part of the weight.

Return the reference time part of the weight.

Return the storage size part of the weight.

Return a mutable reference to the reference time part of the weight.

Return a mutable reference to the storage size part of the weight.

Get the conservative min of self and other weight.

Get the aggressive max of self and other weight.

Try to add some other weight while upholding the limit.

Construct Weight with reference time weight and 0 storage size weight.

Construct Weight with storage size weight and 0 reference time weight.

Construct Weight from weight parts, namely reference time and proof size weights.

Construct Weight from the same weight for all parts.

Saturating Weight addition. Computes self + rhs, saturating at the numeric bounds of all fields instead of overflowing.

Saturating Weight subtraction. Computes self - rhs, saturating at the numeric bounds of all fields instead of overflowing.

Saturating Weight scalar multiplication. Computes self.field * scalar for all fields, saturating at the numeric bounds of all fields instead of overflowing.

Saturating Weight scalar division. Computes self.field / scalar for all fields, saturating at the numeric bounds of all fields instead of overflowing.

Saturating Weight scalar exponentiation. Computes self.field.pow(exp) for all fields, saturating at the numeric bounds of all fields instead of overflowing.

Increment Weight by amount via saturating addition.

Reduce Weight by amount via saturating subtraction.

Checked Weight addition. Computes self + rhs, returning None if overflow occurred.

Checked Weight subtraction. Computes self - rhs, returning None if overflow occurred.

Checked Weight scalar multiplication. Computes self.field * scalar for each field, returning None if overflow occurred.

Checked Weight scalar division. Computes self.field / scalar for each field, returning None if overflow occurred.

Calculates how many other fit into self.

Divides each component of self against the same component of other. Returns the minimum of all those divisions. Returns None in case all components of other are zero.

This returns Some even if some components of other are zero as long as there is at least one non-zero component in other. The devision for this particular component will then yield the maximum value (e.g u64::MAX). This is because we assume not every operation and hence each Weight will necessarily use each resource.

Try to increase self by amount via checked addition.

Try to reduce self by amount via checked subtraction.

Return a Weight where all fields are zero.

Constant version of Add for ref_time component with u64.

Is only overflow safe when evaluated at compile-time.

Constant version of Add for proof_size component with u64.

Is only overflow safe when evaluated at compile-time.

Constant version of Sub for ref_time component with u64.

Is only overflow safe when evaluated at compile-time.

Constant version of Sub for proof_size component with u64.

Is only overflow safe when evaluated at compile-time.

Constant version of Div with u64.

Is only overflow safe when evaluated at compile-time.

Constant version of Mul with u64.

Is only overflow safe when evaluated at compile-time.

Returns true if any of self’s constituent weights is strictly greater than that of the other’s, otherwise returns false.

Returns true if all of self’s constituent weights is strictly greater than that of the other’s, otherwise returns false.

Returns true if any of self’s constituent weights is strictly less than that of the other’s, otherwise returns false.

Returns true if all of self’s constituent weights is strictly less than that of the other’s, otherwise returns false.

Returns true if any of self’s constituent weights is greater than or equal to that of the other’s, otherwise returns false.

Returns true if all of self’s constituent weights is greater than or equal to that of the other’s, otherwise returns false.

Returns true if any of self’s constituent weights is less than or equal to that of the other’s, otherwise returns false.

Returns true if all of self’s constituent weights is less than or equal to that of the other’s, otherwise returns false.

Returns true if any of self’s constituent weights is equal to that of the other’s, otherwise returns false.

Trait Implementations§

The resulting type after applying the + operator.
Performs the + operation. Read more
Performs the += operation. Read more
Returns the smallest finite number this type can represent
Returns the largest finite number this type can represent
Adds two numbers, checking for overflow. If overflow happens, None is returned. Read more
Subtracts two numbers, checking for underflow. If underflow happens, None is returned. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Attempt to deserialise the value from input.
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
Attempt to skip the encoded value from input. Read more
Returns the fixed encoded size of the type. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Formats the value using the given formatter. Read more
The resulting type after applying the / operator.
Performs the / operation. Read more
If possible give a hint of expected size of the encoding. Read more
Convert self to a slice and append it to the destination.
Convert self to an owned vector.
Convert self to a slice and then invoke the given closure with it.
Calculates the encoded size. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Upper bound, in bytes, of the maximum encoded size of this item.
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
The resulting type after applying the * operator.
Performs the * operation. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more
The resulting type after applying the - operator.
Performs the - operation. Read more
Performs the -= operation. Read more
The type identifying for which type info is provided. Read more
Returns the static type identifier for Self.
Returns the additive identity element of Self, 0. Read more
Returns true if self is equal to the additive identity.
Sets self to the additive identity element of Self, 0.

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
Decode Self and consume all of the given input data. Read more
Decode Self and consume all of the given input data. Read more
Decode Self with the given maximum recursion depth and advance input by the number of bytes consumed. Read more
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more
Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more
Compare self to key and return true if they are equal.

Returns the argument unchanged.

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

Calls U::from(self).

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

Get a reference to the inner from the outer.

Get a mutable reference to the inner from the outer.

Return an encoding of Self prepended by given slice.
Returns the smallest finite number this type can represent
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
Should always be Self
Convert from a value of T into an equivalent instance of Self. Read more
Consume self to return an equivalent value of T. Read more
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.
The counterpart to unchecked_from.
Convert from a value of T into an equivalent instance of Self.
Consume self to return an equivalent value of T.
Returns the largest finite number this type can represent
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