pub struct GdalMetaDataRegular {
pub cache_ttl: Option<i32>,
pub data_time: Box<TimeInterval>,
pub params: Box<GdalDatasetParameters>,
pub result_descriptor: Box<RasterResultDescriptor>,
pub step: Box<TimeStep>,
pub time_placeholders: HashMap<String, GdalSourceTimePlaceholder>,
pub type: Type,
}Fields§
§cache_ttl: Option<i32>§data_time: Box<TimeInterval>§params: Box<GdalDatasetParameters>§result_descriptor: Box<RasterResultDescriptor>§step: Box<TimeStep>§time_placeholders: HashMap<String, GdalSourceTimePlaceholder>§type: TypeImplementations§
Source§impl GdalMetaDataRegular
impl GdalMetaDataRegular
pub fn new( data_time: TimeInterval, params: GdalDatasetParameters, result_descriptor: RasterResultDescriptor, step: TimeStep, time_placeholders: HashMap<String, GdalSourceTimePlaceholder>, type: Type, ) -> GdalMetaDataRegular
Trait Implementations§
Source§impl Clone for GdalMetaDataRegular
impl Clone for GdalMetaDataRegular
Source§fn clone(&self) -> GdalMetaDataRegular
fn clone(&self) -> GdalMetaDataRegular
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 GdalMetaDataRegular
impl Debug for GdalMetaDataRegular
Source§impl Default for GdalMetaDataRegular
impl Default for GdalMetaDataRegular
Source§fn default() -> GdalMetaDataRegular
fn default() -> GdalMetaDataRegular
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GdalMetaDataRegular
impl<'de> Deserialize<'de> for GdalMetaDataRegular
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 GdalMetaDataRegular
impl PartialEq for GdalMetaDataRegular
Source§fn eq(&self, other: &GdalMetaDataRegular) -> bool
fn eq(&self, other: &GdalMetaDataRegular) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GdalMetaDataRegular
impl Serialize for GdalMetaDataRegular
impl StructuralPartialEq for GdalMetaDataRegular
Auto Trait Implementations§
impl Freeze for GdalMetaDataRegular
impl RefUnwindSafe for GdalMetaDataRegular
impl Send for GdalMetaDataRegular
impl Sync for GdalMetaDataRegular
impl Unpin for GdalMetaDataRegular
impl UnsafeUnpin for GdalMetaDataRegular
impl UnwindSafe for GdalMetaDataRegular
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