pub struct AcceptAny;Expand description
An access control rule that accepts any incoming association request.
Trait Implementations§
Source§impl AccessControl for AcceptAny
 
impl AccessControl for AcceptAny
Source§fn check_access(
    &self,
    _this_ae_title: &str,
    _calling_ae_title: &str,
    _called_ae_title: &str,
    _user_identity: Option<&UserIdentity>,
) -> Result<(), AssociationRJServiceUserReason>
 
fn check_access( &self, _this_ae_title: &str, _calling_ae_title: &str, _called_ae_title: &str, _user_identity: Option<&UserIdentity>, ) -> Result<(), AssociationRJServiceUserReason>
Obtain the decision of whether to accept an incoming association request
based on the recorded application entity titles and/or user identity. Read more
impl Copy for AcceptAny
impl Eq for AcceptAny
impl StructuralPartialEq for AcceptAny
Auto Trait Implementations§
impl Freeze for AcceptAny
impl RefUnwindSafe for AcceptAny
impl Send for AcceptAny
impl Sync for AcceptAny
impl Unpin for AcceptAny
impl UnwindSafe for AcceptAny
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more