[][src]Struct casbin::FileAdapter

pub struct FileAdapter<P: AsRef<Path>> {
    pub file_path: P,
}

Fields

file_path: P

Methods

impl<P: AsRef<Path> + Send + Sync + 'static> FileAdapter<P>[src]

pub fn new(p: P) -> FileAdapter<P>[src]

pub async fn load_policy_file<'_, '_>(
    &'_ self,
    m: &'_ mut dyn Model,
    handler: fn(_: String, _: &mut dyn Model)
) -> Result<()>
[src]

pub async fn save_policy_file<'_>(&'_ self, text: String) -> Result<()>[src]

Trait Implementations

impl<P: AsRef<Path> + Send + Sync + 'static> Adapter for FileAdapter<P>[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for FileAdapter<P> where
    P: RefUnwindSafe

impl<P> Send for FileAdapter<P> where
    P: Send

impl<P> Sync for FileAdapter<P> where
    P: Sync

impl<P> Unpin for FileAdapter<P> where
    P: Unpin

impl<P> UnwindSafe for FileAdapter<P> where
    P: UnwindSafe

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, 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.