[][src]Struct sequoia_openpgp::crypto::sexp::String_

pub struct String_(_, _);

A string.

A string can optionally have a display hint.

Methods

impl String_[src]

pub fn new<S>(s: S) -> Self where
    S: Into<Box<[u8]>>, 
[src]

Constructs a new Simple String.

pub fn with_display_hint<S, T>(s: S, display_hint: T) -> Self where
    S: Into<Box<[u8]>>,
    T: Into<Box<[u8]>>, 
[src]

Constructs a new String.

pub fn display_hint(&self) -> Option<&[u8]>[src]

Gets a reference to this String's display hint, if any.

Trait Implementations

impl Arbitrary for String_[src]

impl Clone for String_[src]

impl Debug for String_[src]

impl Deref for String_[src]

type Target = [u8]

The resulting type after dereferencing.

impl Eq for String_[src]

impl<'_> From<&'_ [u8]> for String_[src]

impl<'_> From<&'_ str> for String_[src]

impl PartialEq<String_> for String_[src]

impl Serialize for String_[src]

impl SerializeInto for String_[src]

impl StructuralEq for String_[src]

impl StructuralPartialEq for String_[src]

Auto Trait Implementations

impl RefUnwindSafe for String_

impl Send for String_

impl Sync for String_

impl Unpin for String_

impl UnwindSafe for String_

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,