struct Valve<'a> {
name: &'a str,
flow: u32,
edges: Vec<&'a str>,
}
Expand description
Intermediate struct for parsing only.
Fields§
§name: &'a str
§flow: u32
§edges: Vec<&'a str>
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Valve<'a>
impl<'a> RefUnwindSafe for Valve<'a>
impl<'a> Send for Valve<'a>
impl<'a> Sync for Valve<'a>
impl<'a> Unpin for Valve<'a>
impl<'a> UnwindSafe for Valve<'a>
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