Add PartialEq and Eq derives

This commit is contained in:
bitfl0wer 2023-04-16 22:16:39 +02:00
parent f6fce684c1
commit 4c9ddc4569
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
mod api; mod api;
mod client;
mod gateway; mod gateway;
mod instance;
mod limit; mod limit;
mod voice; mod voice;
use url::{ParseError, Url}; use url::{ParseError, Url};
#[derive(Clone, Default, Debug)] #[derive(Clone, Default, Debug, PartialEq, Eq)]
/// A URLBundle is a struct which bundles together the API-, Gateway- and CDN-URLs of a Spacebar /// A URLBundle is a struct which bundles together the API-, Gateway- and CDN-URLs of a Spacebar
/// instance. /// instance.