pub struct ExecutionResources {
pub vm_resources: VmExecutionResources,
}Fields§
§vm_resources: VmExecutionResourcesImplementations§
Source§impl ExecutionResources
impl ExecutionResources
pub fn gt_eq_than(&self, other: &ExecutionResources) -> bool
Trait Implementations§
Source§impl AddAssign<&ExecutionResources> for ExecutionResources
impl AddAssign<&ExecutionResources> for ExecutionResources
Source§fn add_assign(&mut self, rhs: &ExecutionResources)
fn add_assign(&mut self, rhs: &ExecutionResources)
Performs the
+= operation. Read moreSource§impl Clone for ExecutionResources
impl Clone for ExecutionResources
Source§fn clone(&self) -> ExecutionResources
fn clone(&self) -> ExecutionResources
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExecutionResources
impl Debug for ExecutionResources
Source§impl Default for ExecutionResources
impl Default for ExecutionResources
Source§fn default() -> ExecutionResources
fn default() -> ExecutionResources
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionResources
impl<'de> Deserialize<'de> for ExecutionResources
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 Serialize for ExecutionResources
impl Serialize for ExecutionResources
Source§impl Sub<&ExecutionResources> for &ExecutionResources
impl Sub<&ExecutionResources> for &ExecutionResources
Source§type Output = ExecutionResources
type Output = ExecutionResources
The resulting type after applying the
- operator.Auto Trait Implementations§
impl Freeze for ExecutionResources
impl RefUnwindSafe for ExecutionResources
impl Send for ExecutionResources
impl Sync for ExecutionResources
impl Unpin for ExecutionResources
impl UnwindSafe for ExecutionResources
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more