[][src]Struct zzp::grootboek::Account

pub struct Account<'a> {
    pub raw: &'a str,
}

Fields

raw: &'a str

Implementations

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

pub fn from_raw(raw: &'a str) -> Self[src]

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

pub fn matches_prefix(&self, mut prefix: &str) -> bool[src]

pub fn name(self) -> &'a str[src]

pub fn walk_nodes(self) -> impl Iterator<Item = Account<'a>>[src]

pub fn parent(self) -> Option<Self>[src]

pub fn parents(self) -> AccountParents<'a>[src]

pub fn common_parent(self, other: Self) -> Option<Self>[src]

Trait Implementations

impl<'a> Clone for Account<'a>[src]

impl<'a> Copy for Account<'a>[src]

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

impl Display for Account<'_>[src]

impl<'a> Eq for Account<'a>[src]

impl<'a> Ord for Account<'a>[src]

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

impl<'a> PartialOrd<Account<'a>> for Account<'a>[src]

impl<'a> StructuralEq for Account<'a>[src]

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Account<'a>[src]

impl<'a> Send for Account<'a>[src]

impl<'a> Sync for Account<'a>[src]

impl<'a> Unpin for Account<'a>[src]

impl<'a> UnwindSafe for Account<'a>[src]

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