1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Authenticatable trait for models that can be authenticated
//!
//! Implement this trait on your User model to enable `Auth::user()`.
use Any;
/// Trait for models that can be authenticated
///
/// Implement this trait on your User model to enable `Auth::user()`.
///
/// # Example
///
/// ```rust,ignore
/// use ferro_rs::auth::Authenticatable;
/// use std::any::Any;
///
/// impl Authenticatable for User {
/// fn auth_identifier(&self) -> i64 {
/// self.id as i64
/// }
///
/// fn as_any(&self) -> &dyn Any {
/// self
/// }
/// }
/// ```