pub enum GeomLen {
FixedLen(u32),
LenRange(u32, u32),
Unbounded,
}
Expand description
The types of lengths that a piece of geometry can have.
Variants§
FixedLen(u32)
This piece of geometry has a single fixed length
LenRange(u32, u32)
This piece of geometry has some length between a provided lower and upper bound
Unbounded
This piece of geometry has a length whose bound is not known at geometry specification time
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GeomLen
impl RefUnwindSafe for GeomLen
impl Send for GeomLen
impl Sync for GeomLen
impl Unpin for GeomLen
impl UnwindSafe for GeomLen
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more