[][src]Struct aws_iam::model::arn::ArnValidators

pub struct ArnValidators { /* fields omitted */ }

Used to store a set of service-specific validators. So a validator registered for the service "s3" could ensure that the resources section conforms to expected patterns.

Methods

impl ArnValidators[src]

pub fn register(
    &mut self,
    svc_name: String,
    validator: Box<dyn Fn(&ARN) -> Result<(), ArnError>>
)
[src]

Register validator as the function to call for service svc_name.

pub fn deregister(&mut self, svc_name: String)[src]

Deregister any validator function registered for service svc_name.

pub fn get(
    &self,
    svc_name: &String
) -> Option<&Box<dyn Fn(&ARN) -> Result<(), ArnError>>>
[src]

Return the validator function registered for service svc_name.

Trait Implementations

impl Default for ArnValidators[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

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