[][src]Struct starsheet::Space

pub struct Space { /* fields omitted */ }

The main structure exposed by starsheet.

Implementations

impl Space[src]

pub fn new(width: u32, height: u32) -> Self[src]

Create a new Space struct.

pub fn width(&self) -> u32[src]

Get the width of the image.

pub fn height(&self) -> u32[src]

pub fn fill_randomly(&mut self, density: u32)[src]

Fill space with a random assortmnt of stars. They will have varrying brightness and positins.

pub fn to_data(self) -> Vec<u8>[src]

Consumes itself and returns the raw image data. This data is greyscale, so each u8 is a pixel.

Auto Trait Implementations

impl RefUnwindSafe for Space

impl Send for Space

impl Sync for Space

impl Unpin for Space

impl UnwindSafe for Space

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,