pub struct Mask(pub &'static str);Expand description
Tag: A mask that maps Forms based on a suffix.
This works like this: If the form named form.middle was applied
to a region, and said region had the mask1 mask applied to it
(via this struct), then instead of applying the form.middle
form, duat would apply form.middle.mask1.
Unless form.middle.mask1 is explicitely set, then it is
automatically defined as the same thing as form.middle.
Tuple Fields§
§0: &'static strImplementations§
Trait Implementations§
Source§impl AsBuilderPart for Mask
impl AsBuilderPart for Mask
Source§fn as_builder_part(&self) -> BuilderPart<'_>
fn as_builder_part(&self) -> BuilderPart<'_>
Gets a
BuilderPart fro this valueimpl Copy for Mask
impl Eq for Mask
impl StructuralPartialEq for Mask
Auto Trait Implementations§
impl Freeze for Mask
impl RefUnwindSafe for Mask
impl Send for Mask
impl Sync for Mask
impl Unpin for Mask
impl UnsafeUnpin for Mask
impl UnwindSafe for Mask
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