Struct ChangeDetection

Source
pub struct ChangeDetection;
Expand description

A change detection entry point.

Creates a builder to generate change detection instructions.

§Examples

use change_detection::ChangeDetection;

fn main() {
    ChangeDetection::path("src/hello.c").generate();
}

This is the same as just write:

fn main() {
    println!("cargo:rerun-if-changed=src/hello.c");
}

You can collect resources from a path:


fn main() {
    ChangeDetection::path("some_path").generate();
}

To chain multiple directories and files:


fn main() {
    ChangeDetection::path("src/hello.c")
        .path("static")
        .path("build.rs")
        .generate();
}

Implementations§

Source§

impl ChangeDetection

Source

pub fn path<P>(path: P) -> ChangeDetectionBuilder
where P: AsRef<Path>,

Collects change detection instructions from a path.

A path can be a single file or a directory.

§Examples:

To generate change instructions for the directory with the name static:

ChangeDetection::path("static").generate();

To generate change instructions for the file with the name build.rs:

ChangeDetection::path("build.rs").generate();
Source

pub fn path_include<P, F>(path: P, filter: F) -> ChangeDetectionBuilder
where P: AsRef<Path>, F: PathMatcher + 'static,

Collects change detection instructions from a path applying include filter.

A path can be a single file or a directory.

§Examples:

To generate change instructions for the directory with the name static but only for files ending with b:

ChangeDetection::path_include("static", |path: &std::path::Path| {
    path.file_name()
        .map(|filename| filename.to_str().unwrap().ends_with("b"))
        .unwrap_or(false)
}).generate();
Source

pub fn path_exclude<P, F>(path: P, filter: F) -> ChangeDetectionBuilder
where P: AsRef<Path>, F: PathMatcher + 'static,

Collects change detection instructions from a path applying exclude filter.

A path can be a single file or a directory.

§Examples:

To generate change instructions for the directory with the name static but without files ending with b:

ChangeDetection::path_exclude("static", |path: &std::path::Path| {
    path.file_name()
        .map(|filename| filename.to_str().unwrap().ends_with("b"))
        .unwrap_or(false)
}).generate();
Source

pub fn path_filter<P, F1, F2>( path: P, include: F1, exclude: F2, ) -> ChangeDetectionBuilder
where P: AsRef<Path>, F1: PathMatcher + 'static, F2: PathMatcher + 'static,

Collects change detection instructions from a path applying include and exclude filters.

A path can be a single file or a directory.

§Examples:

To generate change instructions for the directory with the name static including only files starting with a but without files ending with b:

ChangeDetection::path_filter("static", |path: &std::path::Path| {
    path.file_name()
        .map(|filename| filename.to_str().unwrap().starts_with("a"))
        .unwrap_or(false)
}, |path: &std::path::Path| {
    path.file_name()
        .map(|filename| filename.to_str().unwrap().ends_with("b"))
        .unwrap_or(false)
}).generate();
Source

pub fn include<F>(filter: F) -> ChangeDetectionBuilder
where F: PathMatcher + 'static,

Applies a global include filter to all paths.

§Examples:

To included only files starting with a for paths static1, static2 and static3:

ChangeDetection::include(|path: &std::path::Path| {
        path.file_name()
            .map(|filename| filename.to_str().unwrap().starts_with("a"))
            .unwrap_or(false)
    })
    .path("static1")
    .path("static2")
    .path("static3")
    .generate();
Source

pub fn exclude<F>(filter: F) -> ChangeDetectionBuilder
where F: PathMatcher + 'static,

Applies a global exclude filter to all paths.

§Examples:

To exclude files starting with a for paths static1, static2 and static3:

ChangeDetection::exclude(|path: &std::path::Path| {
        path.file_name()
            .map(|filename| filename.to_str().unwrap().starts_with("a"))
            .unwrap_or(false)
    })
    .path("static1")
    .path("static2")
    .path("static3")
    .generate();
Source

pub fn filter<F1, F2>(include: F1, exclude: F2) -> ChangeDetectionBuilder
where F1: PathMatcher + 'static, F2: PathMatcher + 'static,

Applies a global include and exclude filters to all paths.

§Examples:

To include files starting with a for paths static1, static2 and static3, but whose names do not end in b:

ChangeDetection::filter(|path: &std::path::Path| {
        path.file_name()
            .map(|filename| filename.to_str().unwrap().starts_with("a"))
            .unwrap_or(false)
    }, |path: &std::path::Path| {
        path.file_name()
            .map(|filename| filename.to_str().unwrap().ends_with("b"))
            .unwrap_or(false)
    })
    .path("static1")
    .path("static2")
    .path("static3")
    .generate();

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.