Fix clippy: Derive Eq for StreamingApi
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
738d97d65f
commit
bf9bad441f
|
@ -32,7 +32,7 @@ pub struct Instance {
|
|||
}
|
||||
|
||||
/// Object containing url for streaming api.
|
||||
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq)]
|
||||
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq, Eq)]
|
||||
pub struct StreamingApi {
|
||||
/// Url for streaming API, typically a `wss://` url.
|
||||
pub streaming_api: String,
|
||||
|
|
Loading…
Reference in New Issue