mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
10 lines
380 B
Rust
10 lines
380 B
Rust
impl std::fmt::Display for InviteMessageType {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
match self {
|
|
Self::Message => write!(f, "message"),
|
|
Self::Response => write!(f, "response"),
|
|
Self::Request => write!(f, "request"),
|
|
Self::RequestResponse => write!(f, "requestResponse"),
|
|
}
|
|
}
|
|
} |