diff --git a/src/jid.rs b/src/jid.rs index d66755e8b81c2fddea13037e1e862ec7268d4404..7e89be36c72fd03cc14cbf84b8129ea90fa3f233 100644 --- a/src/jid.rs +++ b/src/jid.rs @@ -13,9 +13,9 @@ pub enum JidParseError { #[derive(Debug, Clone, PartialEq, Eq)] pub struct Jid { - node: Option, - domain: String, - resource: Option, + pub node: Option, + pub domain: String, + pub resource: Option, } impl fmt::Display for Jid {