Params

Struct Params 

Source
pub struct Params {
Show 49 fields pub body_curve_type: i64, pub body_curve_amount: f64, pub body_length: f64, pub body_height: f64, pub scale_type: i64, pub scale_scale: f64, pub pattern_type: i64, pub pattern_scale: f64, pub dorsal_texture_type: i64, pub dorsal_type: i64, pub dorsal_length: f64, pub dorsal_start: usize, pub dorsal_end: usize, pub wing_texture_type: i64, pub wing_type: i64, pub wing_start: usize, pub wing_end: usize, pub wing_y: f64, pub wing_length: f64, pub wing_width: f64, pub pelvic_start: usize, pub pelvic_end: usize, pub pelvic_length: f64, pub pelvic_type: i64, pub pelvic_texture_type: i64, pub anal_start: usize, pub anal_end: usize, pub anal_length: f64, pub anal_type: i64, pub anal_texture_type: i64, pub tail_type: i64, pub tail_length: f64, pub finlet_type: i64, pub neck_type: i64, pub nose_height: f64, pub mouth_size: usize, pub head_length: f64, pub head_texture_amount: i64, pub has_moustache: i64, pub moustache_length: usize, pub has_beard: i64, pub has_teeth: i64, pub teeth_length: f64, pub teeth_space: f64, pub beard_length: usize, pub eye_type: i64, pub eye_size: f64, pub jaw_size: f64, pub jaw_open: i64,
}

Fields§

§body_curve_type: i64§body_curve_amount: f64§body_length: f64§body_height: f64§scale_type: i64§scale_scale: f64§pattern_type: i64§pattern_scale: f64§dorsal_texture_type: i64§dorsal_type: i64§dorsal_length: f64§dorsal_start: usize§dorsal_end: usize§wing_texture_type: i64§wing_type: i64§wing_start: usize§wing_end: usize§wing_y: f64§wing_length: f64§wing_width: f64§pelvic_start: usize§pelvic_end: usize§pelvic_length: f64§pelvic_type: i64§pelvic_texture_type: i64§anal_start: usize§anal_end: usize§anal_length: f64§anal_type: i64§anal_texture_type: i64§tail_type: i64§tail_length: f64§finlet_type: i64§neck_type: i64§nose_height: f64§mouth_size: usize§head_length: f64§head_texture_amount: i64§has_moustache: i64§moustache_length: usize§has_beard: i64§has_teeth: i64§teeth_length: f64§teeth_space: f64§beard_length: usize§eye_type: i64§eye_size: f64§jaw_size: f64§jaw_open: i64

Implementations§

Source§

impl Params

Source

pub fn default() -> Self

Trait Implementations§

Source§

impl Clone for Params

Source§

fn clone(&self) -> Params

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Params

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for Params

Auto Trait Implementations§

§

impl Freeze for Params

§

impl RefUnwindSafe for Params

§

impl Send for Params

§

impl Sync for Params

§

impl Unpin for Params

§

impl UnwindSafe for Params

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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

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.
Source§

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

Source§

fn vzip(self) -> V