[][src]Struct geo_rand::GeoRandParameters

pub struct GeoRandParameters<T: Copy + PartialOrd<T> + NumCast + Num> {
    pub max_polygons_count: usize,
    pub max_polygon_vertices_count: usize,
    pub max_collisions_count: Option<u32>,
    pub min_x: T,
    pub min_y: T,
    pub max_x: T,
    pub max_y: T,
}

Fields

max_polygons_count: usizemax_polygon_vertices_count: usizemax_collisions_count: Option<u32>min_x: Tmin_y: Tmax_x: Tmax_y: T

Trait Implementations

impl<T: PartialEq + Copy + PartialOrd<T> + NumCast + Num> PartialEq<GeoRandParameters<T>> for GeoRandParameters<T>[src]

impl<T: Copy + PartialOrd<T> + NumCast + Num> Copy for GeoRandParameters<T>[src]

impl<T: Copy + PartialOrd<T> + NumCast + Num> Default for GeoRandParameters<T>[src]

impl<T: Clone + Copy + PartialOrd<T> + NumCast + Num> Clone for GeoRandParameters<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Debug + Copy + PartialOrd<T> + NumCast + Num> Debug for GeoRandParameters<T>[src]

Auto Trait Implementations

impl<T> Send for GeoRandParameters<T> where
    T: Send

impl<T> Unpin for GeoRandParameters<T> where
    T: Unpin

impl<T> Sync for GeoRandParameters<T> where
    T: Sync

impl<T> UnwindSafe for GeoRandParameters<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for GeoRandParameters<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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