pub struct OpenslideloadOptions {
pub level: i32,
pub autocrop: bool,
pub associated: String,
pub attach_associated: bool,
pub rgb: bool,
pub flags: ForeignFlags,
pub memory: bool,
pub access: Access,
pub fail_on: FailOn,
pub revalidate: bool,
}
Expand description
Options for openslideload operation
Fields§
§level: i32
level: i32
-> Load this level from the file
min: 0, max: 100000, default: 0
autocrop: bool
autocrop: bool
-> Crop to image bounds
default: false
associated: String
associated: String
-> Load this associated image
attach_associated: bool
attach_associated: bool
-> Attach all associated images
default: false
rgb: bool
rgb: bool
-> Output RGB (not RGBA)
default: false
flags: ForeignFlags
flags: ForeignFlags
-> Flags for this file
None
-> VIPS_FOREIGN_NONE = 0 [DEFAULT]
Partial
-> VIPS_FOREIGN_PARTIAL = 1
Bigendian
-> VIPS_FOREIGN_BIGENDIAN = 2
Sequential
-> VIPS_FOREIGN_SEQUENTIAL = 4
All
-> VIPS_FOREIGN_ALL = 7
memory: bool
memory: bool
-> Force open via memory
default: false
access: Access
access: Access
-> Required access pattern for this file
Random
-> VIPS_ACCESS_RANDOM = 0 [DEFAULT]
Sequential
-> VIPS_ACCESS_SEQUENTIAL = 1
SequentialUnbuffered
-> VIPS_ACCESS_SEQUENTIAL_UNBUFFERED = 2
Last
-> VIPS_ACCESS_LAST = 3
fail_on: FailOn
fail_on: FailOn
-> Error level to fail on
None
-> VIPS_FAIL_ON_NONE = 0 [DEFAULT]
Truncated
-> VIPS_FAIL_ON_TRUNCATED = 1
Error
-> VIPS_FAIL_ON_ERROR = 2
Warning
-> VIPS_FAIL_ON_WARNING = 3
Last
-> VIPS_FAIL_ON_LAST = 4
revalidate: bool
revalidate: bool
-> Don’t use a cached result for this operation
default: false
Trait Implementations§
Source§impl Clone for OpenslideloadOptions
impl Clone for OpenslideloadOptions
Source§fn clone(&self) -> OpenslideloadOptions
fn clone(&self) -> OpenslideloadOptions
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more