pub enum SpatialBoundsDerive {
Derive(Box<SpatialBoundsDeriveDerive>),
Bounds(Box<SpatialBoundsDeriveBounds>),
None(Box<SpatialBoundsDeriveNone>),
}Expand description
SpatialBoundsDerive : Spatial bounds derivation options for the [MockPointSource].
Variants§
Derive(Box<SpatialBoundsDeriveDerive>)
Bounds(Box<SpatialBoundsDeriveBounds>)
None(Box<SpatialBoundsDeriveNone>)
Trait Implementations§
Source§impl Clone for SpatialBoundsDerive
impl Clone for SpatialBoundsDerive
Source§fn clone(&self) -> SpatialBoundsDerive
fn clone(&self) -> SpatialBoundsDerive
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SpatialBoundsDerive
impl Debug for SpatialBoundsDerive
Source§impl Default for SpatialBoundsDerive
impl Default for SpatialBoundsDerive
Source§impl<'de> Deserialize<'de> for SpatialBoundsDerive
impl<'de> Deserialize<'de> for SpatialBoundsDerive
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SpatialBoundsDerive
impl PartialEq for SpatialBoundsDerive
Source§fn eq(&self, other: &SpatialBoundsDerive) -> bool
fn eq(&self, other: &SpatialBoundsDerive) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SpatialBoundsDerive
impl Serialize for SpatialBoundsDerive
impl StructuralPartialEq for SpatialBoundsDerive
Auto Trait Implementations§
impl Freeze for SpatialBoundsDerive
impl RefUnwindSafe for SpatialBoundsDerive
impl Send for SpatialBoundsDerive
impl Sync for SpatialBoundsDerive
impl Unpin for SpatialBoundsDerive
impl UnsafeUnpin for SpatialBoundsDerive
impl UnwindSafe for SpatialBoundsDerive
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