pub struct RaycastOptions {
pub include_cost: bool,
pub include_path: bool,
}Expand description
Options for raycast behavior
Fields§
§include_cost: boolWhether to include the cost of the path
include_path: boolWhether to include the visited polygons in the result
Trait Implementations§
Source§impl Clone for RaycastOptions
impl Clone for RaycastOptions
Source§fn clone(&self) -> RaycastOptions
fn clone(&self) -> RaycastOptions
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 RaycastOptions
impl Debug for RaycastOptions
Source§impl Default for RaycastOptions
impl Default for RaycastOptions
Source§impl PartialEq for RaycastOptions
impl PartialEq for RaycastOptions
impl Copy for RaycastOptions
impl Eq for RaycastOptions
impl StructuralPartialEq for RaycastOptions
Auto Trait Implementations§
impl Freeze for RaycastOptions
impl RefUnwindSafe for RaycastOptions
impl Send for RaycastOptions
impl Sync for RaycastOptions
impl Unpin for RaycastOptions
impl UnsafeUnpin for RaycastOptions
impl UnwindSafe for RaycastOptions
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