pub struct OpenSlide {Show 14 fields
pub vendor: Option<String>,
pub quickhash_1: Option<String>,
pub mpp_x: Option<f32>,
pub mpp_y: Option<f32>,
pub objective_power: Option<u32>,
pub comment: Option<String>,
pub level_count: Option<u32>,
pub bounds_x: Option<u32>,
pub bounds_y: Option<u32>,
pub bounds_width: Option<u32>,
pub bounds_height: Option<u32>,
pub icc_profile_size: Option<u32>,
pub background_color: Option<String>,
pub levels: Vec<LevelProperties>,
}
Expand description
Common properties that are available under the name openslide.<property>
in the HashMap
returned from the OpenSlide::get_properties()
method.
Fields§
§vendor: Option<String>
§quickhash_1: Option<String>
§mpp_x: Option<f32>
§mpp_y: Option<f32>
§objective_power: Option<u32>
§comment: Option<String>
§level_count: Option<u32>
§bounds_x: Option<u32>
§bounds_y: Option<u32>
§bounds_width: Option<u32>
§bounds_height: Option<u32>
§icc_profile_size: Option<u32>
§background_color: Option<String>
§levels: Vec<LevelProperties>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpenSlide
impl RefUnwindSafe for OpenSlide
impl Send for OpenSlide
impl Sync for OpenSlide
impl Unpin for OpenSlide
impl UnwindSafe for OpenSlide
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