pub trait ImageMetadata {
Show 20 methods fn get_link(&self) -> String;
fn get_credit(&self) -> String;
fn get_sol(&self) -> u32;
fn get_imageid(&self) -> String;
fn get_caption(&self) -> String;
fn get_date_taken_utc(&self) -> String;
fn get_date_taken_mars(&self) -> Option<String>;
fn get_subframe_rect(&self) -> Option<Vec<f64>>;
fn get_scale_factor(&self) -> u32;
fn get_instrument(&self) -> String;
fn get_filter_name(&self) -> Option<String>;
fn get_camera_vector(&self) -> Option<Vec<f64>>;
fn get_camera_model_component_list(&self) -> Option<Cahvor>;
fn get_camera_position(&self) -> Option<Vec<f64>>;
fn get_camera_model_type(&self) -> Option<String>;
fn get_site(&self) -> Option<u32>;
fn get_drive(&self) -> Option<u32>;
fn get_mast_az(&self) -> Option<f64>;
fn get_mast_el(&self) -> Option<f64>;
fn get_sclk(&self) -> Option<f64>;
}

Required methods

Implementors