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.

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.

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.

Return a Weight where all fields are zero.

Constant version of Add with u64.

Is only overflow safe when evaluated at compile-time.

Constant version of Sub 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
Classify the dispatch function based on input data target of type T. When implementing this for a dispatchable, T will be a tuple of all arguments given to the function (except origin). 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 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
Convert self to a slice and append it to the destination.
If possible give a hint of expected size of the encoding. Read more
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.
Upper bound, in bytes, of the maximum encoded size of this item.
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
Print the object.
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.
Weigh the data T given by target. When implementing this for a dispatchable, T will be a tuple of all arguments given to the function (except origin). Read more
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
Convert from a value of T into an equivalent instance of Option<Self>. Read more
Consume self to return Some equivalent value of Option<T>. Read more
True iff no bits are set.
Return the value of Self that is clear.
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.

Cast reference.
Cast reference.
Cast mutable reference.
Cast mutable reference.

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
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