usecrate::compat::string::String;usecrate::compat::vec::Vec;/// Additional metadata for address
#[derive(Debug, Clone, Eq, PartialEq)]pubstructAddressMetadata{/// Indicates that this Address will forward message to another route, therefore the next
/// hop after this one belongs to another node
pubis_terminal:bool,
/// Arbitrary set of attributes
pubattributes:Vec<(String, String)>,
}