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§fn clone(&self) -> MaskDefinition
fn clone(&self) -> MaskDefinition
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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