[][src]Struct graphplan::Domain

pub struct Domain<'a, ActionId: Debug + Hash + Ord + Clone, PropositionId: Debug + Display + Hash + Ord + Clone> { /* fields omitted */ }

Represents a planning domain that can generate a GraphPlan via from_domain. Serves as a helper object to prevent lifetime issues when auto generating things like maintenance actions

Auto Trait Implementations

impl<'a, ActionId, PropositionId> RefUnwindSafe for Domain<'a, ActionId, PropositionId> where
    ActionId: RefUnwindSafe,
    PropositionId: RefUnwindSafe

impl<'a, ActionId, PropositionId> Send for Domain<'a, ActionId, PropositionId> where
    ActionId: Send,
    PropositionId: Sync

impl<'a, ActionId, PropositionId> Sync for Domain<'a, ActionId, PropositionId> where
    ActionId: Sync,
    PropositionId: Sync

impl<'a, ActionId, PropositionId> Unpin for Domain<'a, ActionId, PropositionId> where
    ActionId: Unpin

impl<'a, ActionId, PropositionId> UnwindSafe for Domain<'a, ActionId, PropositionId> where
    ActionId: UnwindSafe,
    PropositionId: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.