[][src]Struct aws_iam::model::qstring::QString

pub struct QString { /* fields omitted */ }

A Qualified String, i.e. prefix:value

Methods

impl QString[src]

pub fn new(qualifier: String, value: String) -> Self[src]

Create a new qualified string with both qualifier and value.

pub fn unqualified(value: String) -> Self[src]

Create a new qualified string with only a value.

pub fn empty() -> Self[src]

Construct an empty qualified string

pub fn is_empty(&self) -> bool[src]

Determines if the value part of this qualified string is empty.

pub fn qualifier(&self) -> &Option<String>[src]

Return the qualifier part of this qualified string.

pub fn value(&self) -> &String[src]

Return the value part of this qualified string.

Trait Implementations

impl Clone for QString[src]

impl Eq for QString[src]

impl PartialEq<QString> for QString[src]

impl Display for QString[src]

impl Debug for QString[src]

impl FromStr for QString[src]

type Err = QStringError

The associated error which can be returned from parsing.

impl Hash for QString[src]

impl StructuralPartialEq for QString[src]

impl StructuralEq for QString[src]

impl Serialize for QString[src]

impl<'de> Deserialize<'de> for QString[src]

Auto Trait Implementations

impl Send for QString

impl Sync for QString

impl Unpin for QString

impl UnwindSafe for QString

impl RefUnwindSafe for QString

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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