[][src]Struct grue::dialogue::Dialogue

pub struct Dialogue { /* fields omitted */ }

Methods

impl Dialogue[src]

pub fn new() -> Self[src]

pub fn insert_node(&mut self, node: Node)[src]

pub fn remove_node(&mut self, _node: NodeId)[src]

pub fn get_node(&self, id: NodeId) -> Option<NodeRef>[src]

pub fn set_events<E: NodeEvents + 'static>(&mut self, events: E)[src]

pub fn validate(&self)[src]

pub fn step(&self, id: NodeId) -> Option<NodeId>[src]

pub fn export(&self) -> NodeGraph[src]

Trait Implementations

impl Default for Dialogue[src]

Auto Trait Implementations

impl !Send for Dialogue

impl Unpin for Dialogue

impl !Sync for Dialogue

impl !UnwindSafe for Dialogue

impl !RefUnwindSafe for Dialogue

Blanket Implementations

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.

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,