pub struct MaskDefinition {
pub id: String,
pub mask_type: String,
pub nodes: Vec<Node>,
pub transfer_values: Vec<f64>,
}Fields§
§id: String§mask_type: String§nodes: Vec<Node>§transfer_values: Vec<f64>Trait Implementations§
Source§impl Clone for MaskDefinition
impl Clone for MaskDefinition
Source§impl Debug for MaskDefinition
impl Debug for MaskDefinition
Source§impl PartialEq for MaskDefinition
impl PartialEq for MaskDefinition
Source§impl Serialize for MaskDefinition
impl Serialize for MaskDefinition
impl StructuralPartialEq for MaskDefinition
Auto Trait Implementations§
impl Freeze for MaskDefinition
impl RefUnwindSafe for MaskDefinition
impl Send for MaskDefinition
impl Sync for MaskDefinition
impl Unpin for MaskDefinition
impl UnsafeUnpin for MaskDefinition
impl UnwindSafe for MaskDefinition
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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 more