Fix clippy: Derive Eq for UpdateCredsRequest
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
a383625210
commit
3f70aba8bd
|
@ -26,7 +26,7 @@ use crate::{
|
||||||
/// let result = client.update_credentials(&mut builder).await.unwrap();
|
/// let result = client.update_credentials(&mut builder).await.unwrap();
|
||||||
/// });
|
/// });
|
||||||
/// ```
|
/// ```
|
||||||
#[derive(Debug, Default, Clone, PartialEq)]
|
#[derive(Debug, Default, Clone, PartialEq, Eq)]
|
||||||
pub struct UpdateCredsRequest {
|
pub struct UpdateCredsRequest {
|
||||||
display_name: Option<String>,
|
display_name: Option<String>,
|
||||||
note: Option<String>,
|
note: Option<String>,
|
||||||
|
|
Loading…
Reference in New Issue