[][src]Struct rnix::types::AttrSet

pub struct AttrSet(_);

Methods

impl AttrSet[src]

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

Returns true if this set is recursive

pub fn filter_entries<F>(&self, _callback: F) -> Root where
    F: FnMut(&KeyValue) -> bool
[src]

Returns a clone of the tree root but without entries where the callback function returns false { a = 2; b = 3; } without 0 is { b = 3; }

Trait Implementations

impl TypedNode for AttrSet[src]

impl EntryHolder for AttrSet[src]

impl Clone for AttrSet[src]

Auto Trait Implementations

impl Unpin for AttrSet

impl !Sync for AttrSet

impl !Send for AttrSet

impl !UnwindSafe for AttrSet

impl !RefUnwindSafe for AttrSet

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