[][src]Struct libinspire::RecID

pub struct RecID<'a> {
    pub id: &'a str,
}

Fields

id: &'a str

Methods

impl<'a> RecID<'a>[src]

Create RecID from &str

Returns a Result<Self, ()> as this can fail. In future I may also implement std::convert::TryFrom, currently a nightly only feature.

Examples

extern crate libinspire;
libinspire::RecID::new("Bekenstein:1973ur");

pub fn new<S: Into<&'a str>>(s: S) -> Result<Self, ()>[src]

Trait Implementations

impl<'a> Debug for RecID<'a>[src]

impl<'a> PartialEq<RecID<'a>> for RecID<'a>[src]

impl<'a> StructuralPartialEq for RecID<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for RecID<'a>

impl<'a> Send for RecID<'a>

impl<'a> Sync for RecID<'a>

impl<'a> Unpin for RecID<'a>

impl<'a> UnwindSafe for RecID<'a>

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> Sealed<T> for T where
    T: ?Sized

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, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err