[][src]Struct cannyls::lump::LumpId

pub struct LumpId(_);

Lumpの識別子(128bit幅).

Methods

impl LumpId[src]

pub const SIZE: usize[src]

識別子のバイト幅.

pub fn new(id: u128) -> Self[src]

新しいLumpIdインスタンスを生成する.

Examples

use cannyls::lump::LumpId;

assert_eq!(LumpId::new(0x12_3456).to_string(), "00000000000000000000000000123456");

// 16進数文字列からも生成可能
assert_eq!("123456".parse::<LumpId>().unwrap(), LumpId::new(0x12_3456));

pub fn as_u128(&self) -> u128[src]

識別子の値(128bit整数)を返す.

Trait Implementations

impl Clone for LumpId[src]

impl Copy for LumpId[src]

impl Debug for LumpId[src]

impl Display for LumpId[src]

impl Eq for LumpId[src]

impl FromStr for LumpId[src]

type Err = Error

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self>[src]

16進数表記の数値からLumpIdを生成する.

数値の"128bit整数"として扱われ、先頭のゼロは省略可能("ab12""00ab12"は等価).

Errors

以下のいずれかの場合には、種類がErrorKind::InvalidInputのエラーが返される:

  • 文字列が16進数表記の整数値を表していない
  • 文字列の長さが32文字を超えている

Examples

use std::str::{self, FromStr};
use cannyls::ErrorKind;
use cannyls::lump::LumpId;

assert_eq!(LumpId::from_str("00ab12").ok(),
           Some(LumpId::new(0xab12)));

assert_eq!(LumpId::from_str("foo_bar").err().map(|e| *e.kind()),
           Some(ErrorKind::InvalidInput));

let large_input = str::from_utf8(&[b'a', 33][..]).unwrap();
assert_eq!(LumpId::from_str(large_input).err().map(|e| *e.kind()),
           Some(ErrorKind::InvalidInput));

impl Hash for LumpId[src]

impl Ord for LumpId[src]

impl PartialEq<LumpId> for LumpId[src]

impl PartialOrd<LumpId> for LumpId[src]

impl StructuralEq for LumpId[src]

impl StructuralPartialEq for LumpId[src]

Auto Trait Implementations

impl RefUnwindSafe for LumpId

impl Send for LumpId

impl Sync for LumpId

impl Unpin for LumpId

impl UnwindSafe for LumpId

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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.