Trait near_vm_vm::ChainableNamedResolver
source · pub trait ChainableNamedResolver: NamedResolver + Sized + Send + Sync {
// Provided methods
fn chain_front<U>(self, other: U) -> NamedResolverChain<U, Self>
where U: NamedResolver + Send + Sync { ... }
fn chain_back<U>(self, other: U) -> NamedResolverChain<Self, U>
where U: NamedResolver + Send + Sync { ... }
}Expand description
A trait for chaining resolvers together.
// override duplicates with imports from `imports2`
imports1.chain_front(imports2);Provided Methods§
sourcefn chain_front<U>(self, other: U) -> NamedResolverChain<U, Self>
fn chain_front<U>(self, other: U) -> NamedResolverChain<U, Self>
Chain a resolver in front of the current resolver.
This will cause the second resolver to override the first.
// override duplicates with imports from `imports2`
imports1.chain_front(imports2);sourcefn chain_back<U>(self, other: U) -> NamedResolverChain<Self, U>
fn chain_back<U>(self, other: U) -> NamedResolverChain<Self, U>
Chain a resolver behind the current resolver.
This will cause the first resolver to override the second.
// override duplicates with imports from `imports1`
imports1.chain_back(imports2);Object Safety§
This trait is not object safe.