pub struct AllowAllAuthorizer;Expand description
Authorizer that accepts every link with AccessPolicy::ReadWrite.
Intended for tests and local bring-up. Production deployments should plug in a policy-aware authorizer.
Trait Implementations§
Source§impl ClientAuthorizer for AllowAllAuthorizer
impl ClientAuthorizer for AllowAllAuthorizer
Called when a new client attempts to link. Read more
Source§impl Clone for AllowAllAuthorizer
impl Clone for AllowAllAuthorizer
Source§fn clone(&self) -> AllowAllAuthorizer
fn clone(&self) -> AllowAllAuthorizer
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AllowAllAuthorizer
impl Debug for AllowAllAuthorizer
Source§impl Default for AllowAllAuthorizer
impl Default for AllowAllAuthorizer
Source§fn default() -> AllowAllAuthorizer
fn default() -> AllowAllAuthorizer
Returns the “default value” for a type. Read more
impl Copy for AllowAllAuthorizer
Auto Trait Implementations§
impl Freeze for AllowAllAuthorizer
impl RefUnwindSafe for AllowAllAuthorizer
impl Send for AllowAllAuthorizer
impl Sync for AllowAllAuthorizer
impl Unpin for AllowAllAuthorizer
impl UnwindSafe for AllowAllAuthorizer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more