[][src]Struct pxm::PFMBuilder

pub struct PFMBuilder(_);

Provides the tool to create PFM struct, and fill in all needed information by hand.

Methods

impl PFMBuilder[src]

pub fn new() -> PFMBuilder[src]

Creates an empty PFM struct.

pub fn size(self, width: usize, height: usize) -> PFMBuilder[src]

Set width and height of the PFM file.

pub fn color(self, color: bool) -> PFMBuilder[src]

Set if it's a RGB or monochrome image.

pub fn scale(self, scale: f32) -> PFMBuilder[src]

Set the scaling factor and endianness.

pub fn data(self, data: Vec<f32>) -> PFMBuilder[src]

Set the pixel data.

pub fn build(self) -> Result<PFM, &'static str>[src]

Build to get the final PFM struct.

Trait Implementations

impl Debug for PFMBuilder[src]

Auto Trait Implementations

impl Send for PFMBuilder

impl Sync for PFMBuilder

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.