pub struct OmeZarrBitmapMultiscaleLayerParams {
pub layer_id: String,
pub bounds: Option<MarginParams>,
pub store_name: Option<String>,
pub group_path: Option<String>,
pub multiscale_index: Option<usize>,
pub target_z: Option<u32>,
pub target_t: Option<u32>,
pub channel_settings: Vec<OmeZarrChannelSetting>,
pub opacity: f32,
}Expand description
Layer params struct for OmeZarrBitmapMultiscaleLayer.
Fields§
§layer_id: String§bounds: Option<MarginParams>§store_name: Option<String>Name of the top-level store to read from (a key in RenderParams::stores).
May be omitted when exactly one top-level store is defined.
group_path: Option<String>Path to the zarr group containing the multiscale metadata. Defaults to “/”.
multiscale_index: Option<usize>Which multiscale entry to use (index into the multiscales array). Defaults to 0.
target_z: Option<u32>Z slice index. Defaults to 0.
target_t: Option<u32>T slice index. Defaults to 0.
channel_settings: Vec<OmeZarrChannelSetting>Channel settings specifying which channels to render and how.
opacity: f32Trait Implementations§
Source§impl Clone for OmeZarrBitmapMultiscaleLayerParams
impl Clone for OmeZarrBitmapMultiscaleLayerParams
Source§fn clone(&self) -> OmeZarrBitmapMultiscaleLayerParams
fn clone(&self) -> OmeZarrBitmapMultiscaleLayerParams
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 Default for OmeZarrBitmapMultiscaleLayerParams
impl Default for OmeZarrBitmapMultiscaleLayerParams
Source§fn default() -> OmeZarrBitmapMultiscaleLayerParams
fn default() -> OmeZarrBitmapMultiscaleLayerParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OmeZarrBitmapMultiscaleLayerParams
impl<'de> Deserialize<'de> for OmeZarrBitmapMultiscaleLayerParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OmeZarrBitmapMultiscaleLayerParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OmeZarrBitmapMultiscaleLayerParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for OmeZarrBitmapMultiscaleLayerParams
impl Serialize for OmeZarrBitmapMultiscaleLayerParams
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for OmeZarrBitmapMultiscaleLayerParams
impl RefUnwindSafe for OmeZarrBitmapMultiscaleLayerParams
impl Send for OmeZarrBitmapMultiscaleLayerParams
impl Sync for OmeZarrBitmapMultiscaleLayerParams
impl Unpin for OmeZarrBitmapMultiscaleLayerParams
impl UnsafeUnpin for OmeZarrBitmapMultiscaleLayerParams
impl UnwindSafe for OmeZarrBitmapMultiscaleLayerParams
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.