pub struct Geometry<R> {
pub size: Option<R>,
pub growth_step: Option<isize>,
pub shrink_threshold: Option<isize>,
pub page_size: Option<PageSize>,
}Fields§
§size: Option<R>§growth_step: Option<isize>§shrink_threshold: Option<isize>§page_size: Option<PageSize>Trait Implementations§
source§impl<R: PartialEq> PartialEq<Geometry<R>> for Geometry<R>
impl<R: PartialEq> PartialEq<Geometry<R>> for Geometry<R>
impl<R: Eq> Eq for Geometry<R>
impl<R> StructuralEq for Geometry<R>
impl<R> StructuralPartialEq for Geometry<R>
Auto Trait Implementations§
impl<R> RefUnwindSafe for Geometry<R>where
R: RefUnwindSafe,
impl<R> Send for Geometry<R>where
R: Send,
impl<R> Sync for Geometry<R>where
R: Sync,
impl<R> Unpin for Geometry<R>where
R: Unpin,
impl<R> UnwindSafe for Geometry<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.