Make UserId's inner value public

This commit is contained in:
Lol3rrr
2024-09-17 17:11:12 +02:00
parent 4417b263a0
commit c5237af33b

View File

@@ -57,7 +57,7 @@ impl TryFrom<RawValue> for String {
}
#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]
pub struct UserId(pub(crate) i32);
pub struct UserId(pub i32);
impl TryFrom<RawValue> for UserId {
type Error = ();