[][src]Struct did_rs::DID

pub struct DID {
    pub method: String,
    pub id_segments: Vec<String>,
    pub params: Vec<(String, Option<String>)>,
    pub path_segments: Vec<String>,
    pub query: Option<String>,
    pub fragment: Option<String>,
}

Decentralized identifier as specified in the spec.

Fields

method: Stringid_segments: Vec<String>

The multiple segments of the method specific ID (parts separated by ':'). At least one String must be here.

params: Vec<(String, Option<String>)>

DID Parameters are separated by ';'. Has an optional value. Optional

path_segments: Vec<String>

DID Path segments. The parts separated by '/'. Optional.

query: Option<String>

DID Query. Optional.

fragment: Option<String>

DID Fragment. Optional.

Methods

impl DID[src]

pub fn parse<T>(input: T) -> Result<Self, String> where
    T: ToString
[src]

Parses a DID from anything that implements the std::string::ToString trait.

Trait Implementations

impl Display for DID[src]

Auto Trait Implementations

impl Sync for DID

impl Send for DID

impl Unpin for DID

impl RefUnwindSafe for DID

impl UnwindSafe for DID

Blanket Implementations

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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