[][src]Struct ostree::RepoCheckoutFilter

pub struct RepoCheckoutFilter(_);

A filter callback to decide which files to checkout from a Repo. The function is called for every directory and file in the dirtree.

Arguments

  • repo - the Repo that is being checked out
  • path - the path of the current file, as an absolute path rooted at the commit's root. The root directory is '/', a subdir would be '/subdir' etc.
  • stat - the metadata of the current file

Return Value

The return value determines whether the current file is checked out or skipped.

Implementations

impl RepoCheckoutFilter[src]

pub fn new<F>(closure: F) -> Option<RepoCheckoutFilter> where
    F: Fn(&Repo, &Path, &stat) -> RepoCheckoutFilterResult + 'static, 
[src]

Wrap a closure for use as a filter function.

Return Value

The return value is always Some containing the value. It simply comes pre-wrapped for your convenience.

Trait Implementations

impl<'_> FromGlibPtrNone<*mut c_void> for &'_ RepoCheckoutFilter[src]

impl<'a> ToGlibPtr<'a, *mut c_void> for RepoCheckoutFilter[src]

type Storage = ()

Auto Trait Implementations

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.