make tag members public
This commit is contained in:
parent
4ab3f72c84
commit
baef34f947
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ impl Display for Message {
|
||||||
|
|
||||||
/// A message tag as defined by [IRCv3.2](http://ircv3.net/specs/core/message-tags-3.2.html).
|
/// A message tag as defined by [IRCv3.2](http://ircv3.net/specs/core/message-tags-3.2.html).
|
||||||
#[derive(Clone, PartialEq, Debug)]
|
#[derive(Clone, PartialEq, Debug)]
|
||||||
pub struct Tag(String, Option<String>);
|
pub struct Tag(pub String, pub Option<String>);
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
|
|
Loading…
Reference in a new issue