pub struct AcceptCalledAeTitle;
Expand description
An access control rule that accepts association requests that match the called AE title with the node’s AE title.
Trait Implementations§
Source§impl AccessControl for AcceptCalledAeTitle
impl AccessControl for AcceptCalledAeTitle
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
Source§impl Clone for AcceptCalledAeTitle
impl Clone for AcceptCalledAeTitle
Source§fn clone(&self) -> AcceptCalledAeTitle
fn clone(&self) -> AcceptCalledAeTitle
Returns a copy 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 AcceptCalledAeTitle
impl Debug for AcceptCalledAeTitle
Source§impl Default for AcceptCalledAeTitle
impl Default for AcceptCalledAeTitle
Source§fn default() -> AcceptCalledAeTitle
fn default() -> AcceptCalledAeTitle
Returns the “default value” for a type. Read more
Source§impl Hash for AcceptCalledAeTitle
impl Hash for AcceptCalledAeTitle
Source§impl PartialEq for AcceptCalledAeTitle
impl PartialEq for AcceptCalledAeTitle
impl Copy for AcceptCalledAeTitle
impl Eq for AcceptCalledAeTitle
impl StructuralPartialEq for AcceptCalledAeTitle
Auto Trait Implementations§
impl Freeze for AcceptCalledAeTitle
impl RefUnwindSafe for AcceptCalledAeTitle
impl Send for AcceptCalledAeTitle
impl Sync for AcceptCalledAeTitle
impl Unpin for AcceptCalledAeTitle
impl UnwindSafe for AcceptCalledAeTitle
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