pub struct SingletonInverseVariableDemand<V, E>{
pub variable_name: String,
/* private fields */
}Expand description
Demand for a singleton inverse variable supply.
Fields§
§variable_name: StringThe variable name to track.
Implementations§
Trait Implementations§
Source§impl<V, E> SupplyDemand for SingletonInverseVariableDemand<V, E>
impl<V, E> SupplyDemand for SingletonInverseVariableDemand<V, E>
Source§type Output = ExternalizedSingletonInverseVariableSupply<V, E>
type Output = ExternalizedSingletonInverseVariableSupply<V, E>
The type of supply this demand requests.
Source§fn demand_key(&self) -> DemandKey
fn demand_key(&self) -> DemandKey
Returns a unique key identifying this specific demand. Read more
Source§fn create_supply(&self) -> Self::Output
fn create_supply(&self) -> Self::Output
Creates a new supply instance for this demand.
Auto Trait Implementations§
impl<V, E> Freeze for SingletonInverseVariableDemand<V, E>
impl<V, E> RefUnwindSafe for SingletonInverseVariableDemand<V, E>where
V: RefUnwindSafe,
E: RefUnwindSafe,
impl<V, E> Send for SingletonInverseVariableDemand<V, E>
impl<V, E> Sync for SingletonInverseVariableDemand<V, E>
impl<V, E> Unpin for SingletonInverseVariableDemand<V, E>
impl<V, E> UnwindSafe for SingletonInverseVariableDemand<V, E>where
V: UnwindSafe,
E: UnwindSafe,
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