pub struct VerticalGridOperation {
pub name: String,
pub grid: GridDefinition,
pub grid_horizontal_crs_epsg: Option<u32>,
pub source_vertical_crs_epsg: Option<u32>,
pub target_vertical_crs_epsg: Option<u32>,
pub source_vertical_datum_epsg: Option<u32>,
pub target_vertical_datum_epsg: Option<u32>,
pub accuracy: Option<OperationAccuracy>,
pub area_of_use: Option<AreaOfUse>,
pub offset_convention: VerticalGridOffsetConvention,
}Fields§
§name: StringHuman-readable operation name used in diagnostics.
grid: GridDefinitionGrid resource definition resolved through the configured grid provider.
grid_horizontal_crs_epsg: Option<u32>Horizontal CRS EPSG code in which the grid is sampled, when known.
source_vertical_crs_epsg: Option<u32>Optional source vertical CRS EPSG filter.
target_vertical_crs_epsg: Option<u32>Optional target vertical CRS EPSG filter.
source_vertical_datum_epsg: Option<u32>Optional source gravity-related vertical datum EPSG filter.
target_vertical_datum_epsg: Option<u32>Optional target gravity-related vertical datum EPSG filter.
accuracy: Option<OperationAccuracy>Expected operation accuracy in meters, when known.
area_of_use: Option<AreaOfUse>Operation area of use, when distinct from the grid’s area.
offset_convention: VerticalGridOffsetConventionImplementations§
Trait Implementations§
Source§impl Clone for VerticalGridOperation
impl Clone for VerticalGridOperation
Source§fn clone(&self) -> VerticalGridOperation
fn clone(&self) -> VerticalGridOperation
Returns a duplicate of the value. Read more
1.0.0 · 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 VerticalGridOperation
impl Debug for VerticalGridOperation
Source§impl PartialEq for VerticalGridOperation
impl PartialEq for VerticalGridOperation
impl StructuralPartialEq for VerticalGridOperation
Auto Trait Implementations§
impl Freeze for VerticalGridOperation
impl RefUnwindSafe for VerticalGridOperation
impl Send for VerticalGridOperation
impl Sync for VerticalGridOperation
impl Unpin for VerticalGridOperation
impl UnsafeUnpin for VerticalGridOperation
impl UnwindSafe for VerticalGridOperation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more