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