[][src]Struct actix_casbin::CasbinActor

pub struct CasbinActor<T: IEnforcer + 'static> {
    pub enforcer: Option<Arc<RwLock<T>>>,
}

Fields

enforcer: Option<Arc<RwLock<T>>>

Implementations

impl<T: IEnforcer + 'static> CasbinActor<T>[src]

pub async fn new<M: TryIntoModel, A: TryIntoAdapter>(
    m: M,
    a: A
) -> Result<Addr<CasbinActor<T>>>
[src]

pub fn set_enforcer(e: Arc<RwLock<T>>) -> Result<CasbinActor<T>>[src]

pub fn get_enforcer(&mut self) -> Option<Arc<RwLock<T>>>[src]

Trait Implementations

impl<T: IEnforcer + 'static> Actor for CasbinActor<T>[src]

type Context = Context<Self>

Actor execution context type

impl<T: IEnforcer + 'static> Handler<CasbinCmd> for CasbinActor<T>[src]

type Result = ResponseActFuture<Self, Result<CasbinResult>>

The type of value that this handler will return. Read more

impl<T: IEnforcer + 'static> Supervised for CasbinActor<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for CasbinActor<T>

impl<T> Send for CasbinActor<T>

impl<T> Sync for CasbinActor<T>

impl<T> Unpin for CasbinActor<T>

impl<T> !UnwindSafe for CasbinActor<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,