1use crate::{Interaction, Peer}; 2 3impl Interaction { 4 #[must_use] 5 pub fn get_peer(&self) -> &Peer { 6 &self.peer 7 } 8}