pub struct SpatialBoundsDeriveBounds {
pub lower_left_coordinate: Box<Coordinate2D>,
pub upper_right_coordinate: Box<Coordinate2D>,
pub type: Type,
}Fields§
§lower_left_coordinate: Box<Coordinate2D>§upper_right_coordinate: Box<Coordinate2D>§type: TypeImplementations§
Source§impl SpatialBoundsDeriveBounds
impl SpatialBoundsDeriveBounds
pub fn new( lower_left_coordinate: Coordinate2D, upper_right_coordinate: Coordinate2D, type: Type, ) -> SpatialBoundsDeriveBounds
Trait Implementations§
Source§impl Clone for SpatialBoundsDeriveBounds
impl Clone for SpatialBoundsDeriveBounds
Source§fn clone(&self) -> SpatialBoundsDeriveBounds
fn clone(&self) -> SpatialBoundsDeriveBounds
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 SpatialBoundsDeriveBounds
impl Debug for SpatialBoundsDeriveBounds
Source§impl Default for SpatialBoundsDeriveBounds
impl Default for SpatialBoundsDeriveBounds
Source§fn default() -> SpatialBoundsDeriveBounds
fn default() -> SpatialBoundsDeriveBounds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SpatialBoundsDeriveBounds
impl<'de> Deserialize<'de> for SpatialBoundsDeriveBounds
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 SpatialBoundsDeriveBounds
impl PartialEq for SpatialBoundsDeriveBounds
Source§fn eq(&self, other: &SpatialBoundsDeriveBounds) -> bool
fn eq(&self, other: &SpatialBoundsDeriveBounds) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SpatialBoundsDeriveBounds
Auto Trait Implementations§
impl Freeze for SpatialBoundsDeriveBounds
impl RefUnwindSafe for SpatialBoundsDeriveBounds
impl Send for SpatialBoundsDeriveBounds
impl Sync for SpatialBoundsDeriveBounds
impl Unpin for SpatialBoundsDeriveBounds
impl UnsafeUnpin for SpatialBoundsDeriveBounds
impl UnwindSafe for SpatialBoundsDeriveBounds
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