1//! Graph macros. 2 3#[macro_export] 4macro_rules! copyclone { 5 ($name:ident) => { 6 impl Clone for $name { 7 #[inline] 8 fn clone(&self) -> Self { 9 *self 10 } 11 } 12 }; 13}