pub struct ArcNode {
pub source: String,
pub target: String,
pub keys: Vec<String>,
pub value: String,
}Expand description
A parsed arc definition.
Fields§
§source: String§target: String§keys: Vec<String>§value: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for ArcNode
impl RefUnwindSafe for ArcNode
impl Send for ArcNode
impl Sync for ArcNode
impl Unpin for ArcNode
impl UnsafeUnpin for ArcNode
impl UnwindSafe for ArcNode
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