Struct ignore::types::TypesBuilder

source ·
pub struct TypesBuilder { /* private fields */ }
Expand description

TypesBuilder builds a type matcher from a set of file type definitions and a set of file type selections.

Implementations§

source§

impl TypesBuilder

source

pub fn new() -> TypesBuilder

Create a new builder for a file type matcher.

The builder contains no type definitions to start with. A set of default type definitions can be added with add_defaults, and additional type definitions can be added with select and negate.

source

pub fn build(&self) -> Result<Types, Error>

Build the current set of file type definitions and selections into a file type matcher.

source

pub fn definitions(&self) -> Vec<FileTypeDef>

Return the set of current file type definitions.

Definitions and globs are sorted.

source

pub fn select(&mut self, name: &str) -> &mut TypesBuilder

Select the file type given by name.

If name is all, then all file types currently defined are selected.

source

pub fn negate(&mut self, name: &str) -> &mut TypesBuilder

Ignore the file type given by name.

If name is all, then all file types currently defined are negated.

source

pub fn clear(&mut self, name: &str) -> &mut TypesBuilder

Clear any file type definitions for the type name given.

source

pub fn add(&mut self, name: &str, glob: &str) -> Result<(), Error>

Add a new file type definition. name can be arbitrary and pat should be a glob recognizing file paths belonging to the name type.

If name is all or otherwise contains any character that is not a Unicode letter or number, then an error is returned.

source

pub fn add_def(&mut self, def: &str) -> Result<(), Error>

Add a new file type definition specified in string form. There are two valid formats:

  1. {name}:{glob}. This defines a ‘root’ definition that associates the given name with the given glob.
  2. `{name}:include:{comma-separated list of already defined names}. This defines an ‘include’ definition that associates the given name with the definitions of the given existing types. Names may not include any characters that are not Unicode letters or numbers.
source

pub fn add_defaults(&mut self) -> &mut TypesBuilder

Add a set of default file type definitions.

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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

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

§

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

§

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.