Add missing derives for AutoId
This commit is contained in:
parent
d8a5acef77
commit
9cb409de9b
|
@ -75,9 +75,9 @@ pub enum BoundAutoSession {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Id's used by the `AutoSessionNotifier` internally.
|
/// Id's used by the `AutoSessionNotifier` internally.
|
||||||
#[derive(PartialEq, Eq)]
|
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
|
||||||
pub struct AutoId(AutoIdInternal);
|
pub struct AutoId(AutoIdInternal);
|
||||||
#[derive(PartialEq, Eq)]
|
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
|
||||||
enum AutoIdInternal {
|
enum AutoIdInternal {
|
||||||
#[cfg(feature = "backend_session_logind")]
|
#[cfg(feature = "backend_session_logind")]
|
||||||
Logind(logind::Id),
|
Logind(logind::Id),
|
||||||
|
|
Loading…
Reference in New Issue