pub struct NearbyListChangeMoveConfig {
pub max_nearby: usize,
pub variable_name: Option<String>,
}Expand description
Configuration for NearbyListChangeMoveSelector.
Fields§
§max_nearby: usizeMaximum nearby destination positions to consider per source element.
variable_name: Option<String>Variable name filter. If None, applies to all list variables.
Trait Implementations§
Source§impl Clone for NearbyListChangeMoveConfig
impl Clone for NearbyListChangeMoveConfig
Source§fn clone(&self) -> NearbyListChangeMoveConfig
fn clone(&self) -> NearbyListChangeMoveConfig
Returns a duplicate 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 NearbyListChangeMoveConfig
impl Debug for NearbyListChangeMoveConfig
Source§impl Default for NearbyListChangeMoveConfig
impl Default for NearbyListChangeMoveConfig
Source§impl<'de> Deserialize<'de> for NearbyListChangeMoveConfig
impl<'de> Deserialize<'de> for NearbyListChangeMoveConfig
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
Auto Trait Implementations§
impl Freeze for NearbyListChangeMoveConfig
impl RefUnwindSafe for NearbyListChangeMoveConfig
impl Send for NearbyListChangeMoveConfig
impl Sync for NearbyListChangeMoveConfig
impl Unpin for NearbyListChangeMoveConfig
impl UnsafeUnpin for NearbyListChangeMoveConfig
impl UnwindSafe for NearbyListChangeMoveConfig
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