[][src]Struct doc_9_testing_123456789::GBP

pub struct GBP(pub i32);

Parse your money from a string

use doc_9_testing_123456789::*;
let g = "£32.45".parse();
assert_eq!(g, Ok(GBP(3245)));

Trait Implementations

impl Debug for GBP[src]

impl FromStr for GBP[src]

type Err = GBPError

The associated error which can be returned from parsing.

impl PartialEq<GBP> for GBP[src]

impl StructuralPartialEq for GBP[src]

Auto Trait Implementations

impl RefUnwindSafe for GBP

impl Send for GBP

impl Sync for GBP

impl Unpin for GBP

impl UnwindSafe for GBP

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, 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.