pub struct PathfinderFlags {
pub allow_destroy_friendly_entities: bool,
pub allow_paths_through_own_entities: bool,
pub cache: bool,
pub low_priority: bool,
pub no_break: bool,
pub prefer_straight_paths: bool,
}Fields§
§allow_destroy_friendly_entities: bool§allow_paths_through_own_entities: bool§cache: bool§low_priority: bool§no_break: bool§prefer_straight_paths: boolTrait Implementations§
Source§impl Clone for PathfinderFlags
impl Clone for PathfinderFlags
Source§fn clone(&self) -> PathfinderFlags
fn clone(&self) -> PathfinderFlags
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 moreimpl Copy for PathfinderFlags
Source§impl Debug for PathfinderFlags
impl Debug for PathfinderFlags
Source§impl Default for PathfinderFlags
impl Default for PathfinderFlags
Source§fn default() -> PathfinderFlags
fn default() -> PathfinderFlags
Returns the “default value” for a type. Read more
Source§impl PartialEq for PathfinderFlags
impl PartialEq for PathfinderFlags
impl StructuralPartialEq for PathfinderFlags
Auto Trait Implementations§
impl Freeze for PathfinderFlags
impl RefUnwindSafe for PathfinderFlags
impl Send for PathfinderFlags
impl Sync for PathfinderFlags
impl Unpin for PathfinderFlags
impl UnsafeUnpin for PathfinderFlags
impl UnwindSafe for PathfinderFlags
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