[][src]Struct fastobo::ast::IdentLocal

pub struct IdentLocal { /* fields omitted */ }

A local identifier, preceded by a prefix in prefixed IDs.

  • A canonical local ID only contains digits ([0-9]).
  • A non-canonical local ID can contain any character excepting whitespaces and newlines.

Example

let id = PrefixedIdent::from_str("GO:0046154").unwrap();
assert!(id.local().is_canonical());
assert_eq!(id.local(), "0046154");

Methods

impl IdentLocal[src]

pub fn new<S>(local: S) -> Self where
    S: Into<String>, 
[src]

Create a new local identifier.

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

Check if the local identifier is canonical or not.

pub unsafe fn new_unchecked(s: String, canonical: bool) -> Self[src]

Create a new IdLocal without checking if it is canonical.

pub fn as_str(&self) -> &str[src]

Get the local identifier as a string slice.

pub fn into_string(self) -> String[src]

Extract the unescaped local identifier as a String.

Trait Implementations

impl<'i> FromPair<'i> for IdentLocal[src]

impl<'a> Share<'a, IdLocal<'a>> for IdentLocal[src]

impl Eq for IdentLocal[src]

impl Clone for IdentLocal[src]

impl AsRef<str> for IdentLocal[src]

impl PartialOrd<IdentLocal> for IdentLocal[src]

impl PartialEq<IdentLocal> for IdentLocal[src]

impl PartialEq<str> for IdentLocal[src]

impl Ord for IdentLocal[src]

impl From<IdentLocal> for String[src]

impl From<String> for IdentLocal[src]

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

impl Hash for IdentLocal[src]

impl Debug for IdentLocal[src]

impl Display for IdentLocal[src]

impl FromStr for IdentLocal[src]

type Err = SyntaxError

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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