pub struct GraphAst {
pub edges: Vec<EdgeAst>,
pub now: Option<i64>,
}Expand description
A graph declaration.
Fields§
§edges: Vec<EdgeAst>§now: Option<i64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphAst
impl RefUnwindSafe for GraphAst
impl Send for GraphAst
impl Sync for GraphAst
impl Unpin for GraphAst
impl UnsafeUnpin for GraphAst
impl UnwindSafe for GraphAst
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