pub struct GeoKeyDirectory {
pub version: u16,
pub key_revision: u16,
pub minor_revision: u16,
pub keys: Vec<KeyEntry>,
}
Fields§
§version: u16
§key_revision: u16
§minor_revision: u16
§keys: Vec<KeyEntry>
Implementations§
Source§impl GeoKeyDirectory
impl GeoKeyDirectory
pub fn version(&self) -> u16
pub fn key_revision(&self) -> u16
pub fn minor_revision(&self) -> u16
pub fn keys(&self) -> &Vec<KeyEntry>
pub fn parse_from(value: &[u16]) -> Result<GeoKeyDirectory, ImageError>
Trait Implementations§
Source§impl Clone for GeoKeyDirectory
impl Clone for GeoKeyDirectory
Source§fn clone(&self) -> GeoKeyDirectory
fn clone(&self) -> GeoKeyDirectory
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for GeoKeyDirectory
impl RefUnwindSafe for GeoKeyDirectory
impl Send for GeoKeyDirectory
impl Sync for GeoKeyDirectory
impl Unpin for GeoKeyDirectory
impl UnwindSafe for GeoKeyDirectory
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