[][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]

fn from_pair(pair: Pair<'i, Rule>) -> Result<Self, Error>[src]

Create a new instance from a Pair.

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

impl From<IdentLocal> for String[src]

impl From<String> for IdentLocal[src]

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

impl Ord for IdentLocal[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl AsRef<str> for IdentLocal[src]

impl PartialEq<IdentLocal> for IdentLocal[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<str> for IdentLocal[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialOrd<IdentLocal> for IdentLocal[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for IdentLocal[src]

impl Clone for IdentLocal[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Hash for IdentLocal[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for IdentLocal[src]

impl Display for IdentLocal[src]

impl FromStr for IdentLocal[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for IdentLocal

impl Sync for IdentLocal

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> 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<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]