pub struct Settings {
    pub iterations: usize,
    pub dt: f32,
    pub node_size: u32,
    pub node_color: (u8, u8, u8),
    pub edge_size: u32,
    pub edge_color: (u8, u8, u8),
    pub background_color: (u8, u8, u8),
    pub print_progress: bool,
}
Expand description

Parameters for drawing the SVG image.

Fields

iterations: usizedt: f32node_size: u32node_color: (u8, u8, u8)edge_size: u32edge_color: (u8, u8, u8)background_color: (u8, u8, u8)print_progress: bool

Trait Implementations

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.