pub struct DynamicListVariableSlot<S> {
pub entity: EntityClassId,
pub variable: VariableId,
pub entity_type_name: &'static str,
pub variable_name: &'static str,
/* private fields */
}Expand description
Public dynamic list variable slot.
Fields§
§entity: EntityClassId§variable: VariableId§entity_type_name: &'static str§variable_name: &'static strImplementations§
Source§impl<S> DynamicListVariableSlot<S>
impl<S> DynamicListVariableSlot<S>
pub fn with_access( entity: EntityClassId, variable: VariableId, entity_type_name: &'static str, variable_name: &'static str, access: Arc<dyn DynamicListAccess<S>>, ) -> DynamicListVariableSlot<S>
pub fn with_descriptor_index( self, descriptor_index: usize, ) -> DynamicListVariableSlot<S>
pub fn resolve_descriptor_index( &mut self, descriptor: &SolutionDescriptor, ) -> Result<(), String>
pub fn resolved_against( self, descriptor: &SolutionDescriptor, ) -> Result<DynamicListVariableSlot<S>, String>
pub fn is_descriptor_resolved(&self) -> bool
pub fn descriptor_index(&self) -> usize
pub fn matches_target( &self, entity_class: Option<&str>, variable_name: Option<&str>, ) -> bool
pub fn entity_count(&self, solution: &S) -> usize
pub fn element_count(&self, solution: &S) -> usize
pub fn element(&self, solution: &S, element_index: usize) -> Option<usize>
pub fn assigned_elements(&self, solution: &S) -> Vec<usize>
pub fn list_len(&self, solution: &S, row: usize) -> usize
pub fn list_get(&self, solution: &S, row: usize, pos: usize) -> Option<usize>
pub fn list_insert( &self, solution: &mut S, row: usize, pos: usize, value: usize, )
pub fn list_remove( &self, solution: &mut S, row: usize, pos: usize, ) -> Option<usize>
Source§impl<S> DynamicListVariableSlot<S>where
S: DynamicModelBackend,
impl<S> DynamicListVariableSlot<S>where
S: DynamicModelBackend,
pub fn new( entity: EntityClassId, variable: VariableId, entity_type_name: &'static str, variable_name: &'static str, ) -> DynamicListVariableSlot<S>
Trait Implementations§
Source§impl<S> Clone for DynamicListVariableSlot<S>
impl<S> Clone for DynamicListVariableSlot<S>
Source§fn clone(&self) -> DynamicListVariableSlot<S>
fn clone(&self) -> DynamicListVariableSlot<S>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<S> Debug for DynamicListVariableSlot<S>
impl<S> Debug for DynamicListVariableSlot<S>
impl<S> Eq for DynamicListVariableSlot<S>
Source§impl<S> PartialEq for DynamicListVariableSlot<S>
impl<S> PartialEq for DynamicListVariableSlot<S>
Source§fn eq(&self, other: &DynamicListVariableSlot<S>) -> bool
fn eq(&self, other: &DynamicListVariableSlot<S>) -> bool
Tests for
self and other values to be equal, and is used by ==.Auto Trait Implementations§
impl<S> !RefUnwindSafe for DynamicListVariableSlot<S>
impl<S> !UnwindSafe for DynamicListVariableSlot<S>
impl<S> Freeze for DynamicListVariableSlot<S>
impl<S> Send for DynamicListVariableSlot<S>
impl<S> Sync for DynamicListVariableSlot<S>
impl<S> Unpin for DynamicListVariableSlot<S>
impl<S> UnsafeUnpin for DynamicListVariableSlot<S>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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