Struct oxygengine_navigation::resources::NavIslands [−][src]
pub struct NavIslands<Island, Portal> where
Island: Debug + Clone + Eq + Hash + Send + Sync,
Portal: Debug + Clone + Eq + Hash + Send + Sync, { /* fields omitted */ }Implementations
pub fn new(
connections: Vec<NavIslandsConnection<Island, Portal>, Global>,
both_ways: bool
) -> NavIslands<Island, Portal>
pub fn set_portal_cost(
&mut self,
portal: &NavIslandPortal<Island, Portal>,
cost: f32
) -> Option<f32>
pub fn neighbors(
&self,
portal: &NavIslandPortal<Island, Portal>
) -> Option<impl Iterator<Item = &NavIslandPortal<Island, Portal>>>
pub fn find_path(
&self,
from: &NavIslandPortal<Island, Portal>,
to: &NavIslandPortal<Island, Portal>
) -> Option<(f32, Vec<&NavIslandPortal<Island, Portal>, Global>)>
pub fn find_path_custom<F>(
&self,
from: &NavIslandPortal<Island, Portal>,
to: &NavIslandPortal<Island, Portal>,
filter: F
) -> Option<(f32, Vec<&NavIslandPortal<Island, Portal>, Global>)> where
F: FnMut(&NavIslandPortal<Island, Portal>, &NavIslandPortal<Island, Portal>) -> bool,
Trait Implementations
Returns the “default value” for a type. Read more
impl<'de, Island, Portal> Deserialize<'de> for NavIslands<Island, Portal> where
Island: Debug + Clone + Eq + Hash + Send + Sync + Serialize + DeserializeOwned,
Portal: Debug + Clone + Eq + Hash + Send + Sync + Serialize + DeserializeOwned,
impl<'de, Island, Portal> Deserialize<'de> for NavIslands<Island, Portal> where
Island: Debug + Clone + Eq + Hash + Send + Sync + Serialize + DeserializeOwned,
Portal: Debug + Clone + Eq + Hash + Send + Sync + Serialize + DeserializeOwned,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<NavIslands<Island, Portal>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<NavIslands<Island, Portal>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl<Island, Portal> RefUnwindSafe for NavIslands<Island, Portal> where
Island: RefUnwindSafe,
Portal: RefUnwindSafe,
impl<Island, Portal> Send for NavIslands<Island, Portal>
impl<Island, Portal> Sync for NavIslands<Island, Portal>
impl<Island, Portal> Unpin for NavIslands<Island, Portal> where
Island: Unpin,
Portal: Unpin,
impl<Island, Portal> UnwindSafe for NavIslands<Island, Portal> where
Island: UnwindSafe,
Portal: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> bool
Checks if self is actually part of its subset T (and can be converted to it).
pub unsafe fn to_subset_unchecked(&self) -> SS
pub unsafe fn to_subset_unchecked(&self) -> SS
Use with care! Same as self.to_subset but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SP
The inclusion map: converts self to the equivalent element of its superset.
