Skip to main content

Writer

Struct Writer 

Source
pub struct Writer { /* private fields */ }
Expand description

Builder that converts .winmd metadata into RDL.

Implementations§

Source§

impl Writer

Source

pub fn new() -> Self

Creates a new builder with default options.

Source

pub fn input(&mut self, input: impl AsRef<Path>) -> &mut Self

Adds an input .winmd file or directory.

Source

pub fn input_bytes(&mut self, input: &[u8]) -> &mut Self

Adds a .winmd file from memory.

Source

pub fn input_byte_sets<I, B>(&mut self, inputs: I) -> &mut Self
where I: IntoIterator<Item = B>, B: AsRef<[u8]>,

Adds .winmd files from memory.

Source

pub fn input_default(&mut self) -> &mut Self

Adds the default Windows metadata inputs.

Source

pub fn output(&mut self, output: impl AsRef<Path>) -> &mut Self

Sets the output .rdl file or directory path.

Source

pub fn inputs<I, S>(&mut self, inputs: I) -> &mut Self
where I: IntoIterator<Item = S>, S: AsRef<Path>,

Adds multiple input .winmd files.

Source

pub fn filters<I, S>(&mut self, filters: I) -> &mut Self
where I: IntoIterator<Item = S>, S: AsRef<str>,

Adds multiple filter rules. See filter.

Source

pub fn filter(&mut self, filter: &str) -> &mut Self

Adds an include/exclude filter rule. Prefix with ! to exclude.

Source

pub fn split(&mut self) -> &mut Self

Writes each namespace to a separate file.

Source

pub fn partition(&mut self, map: HashMap<String, String>) -> &mut Self

Partitions output into one <stem>.rdl per defining header.

Source

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

Converts the inputs and writes the RDL to the configured output.

Trait Implementations§

Source§

impl Default for Writer

Source§

fn default() -> Writer

Returns the “default value” for a type. Read more

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 = !

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

fn try_from(value: U) -> Result<T, !>

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.